We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7879c15 commit 34ec928Copy full SHA for 34ec928
drivers/gpu/drm/ci/build.sh
@@ -75,19 +75,19 @@ else
75
fi
76
77
78
-for opt in $ENABLE_KCONFIGS; do
79
- echo CONFIG_$opt=y >> drivers/gpu/drm/ci/${KERNEL_ARCH}.config
80
-done
81
-for opt in $DISABLE_KCONFIGS; do
82
- echo CONFIG_$opt=n >> drivers/gpu/drm/ci/${KERNEL_ARCH}.config
83
84
-
85
if [[ -n "${MERGE_FRAGMENT}" ]]; then
86
./scripts/kconfig/merge_config.sh ${DEFCONFIG} drivers/gpu/drm/ci/${MERGE_FRAGMENT}
87
else
88
make `basename ${DEFCONFIG}`
89
90
+for opt in $ENABLE_KCONFIGS; do
+ ./scripts/config --enable CONFIG_$opt
+done
+for opt in $DISABLE_KCONFIGS; do
+ ./scripts/config --disable CONFIG_$opt
+
91
make ${KERNEL_IMAGE_NAME}
92
93
mkdir -p /lava-files/
0 commit comments