7ae2ab3f75
The mandatory tweaks to allmodconfig are manually enforced during post_defconfig, so using gki_defconfig as a base for allmodconfig is not strictly necessary. While this helped finding bugs in code paths that are unexplored by the vanilla allmodconfig, this is also misalgigned with KernelCI, and doesn't prevent breakages there, which is one of the original point of allmodconfig as a presubmit test. Remove the KCONFIG_ALLCONFIG parameter for allmodconfig, and remove a stale comment in the same file while at it. Bug: 140224784 Test: compiled-tested allmodconfig for arm64 and x86 Change-Id: Idd33e25ce62e2a6a37d650844d8ae3033070f825 Signed-off-by: Quentin Perret <qperret@google.com>
16 lines
480 B
Text
16 lines
480 B
Text
DEFCONFIG=allmodconfig
|
|
|
|
# XFS_FS is currently broken on this branch with clang-9
|
|
POST_DEFCONFIG_CMDS="update_config"
|
|
function update_config() {
|
|
${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
|
|
-d TEST_KMOD \
|
|
-d XFS_FS \
|
|
-d CPU_BIG_ENDIAN \
|
|
-d STM \
|
|
-d TEST_MEMCAT_P \
|
|
-e UNWINDER_FRAME_POINTER \
|
|
|
|
(cd ${OUT_DIR} && \
|
|
make O=${OUT_DIR} $archsubarch CC=${CC} CROSS_COMPILE=${CROSS_COMPILE} olddefconfig)
|
|
}
|