android_kernel_samsung_sm8650/build.config.allyesconfig
Gokul krishna Krishnakumar 8763041a37 build.config: Add build config support for allyesconfig
Building kernel with allyesconfig configuration creates .config
file by setting all symbols to 'y' as much as possilble.

Change-Id: I35666851ea3eb03f818bddfac0e587129a32648a
Signed-off-by: Gokul krishna Krishnakumar <quic_gokukris@quicinc.com>
2023-01-10 15:06:25 -08:00

17 lines
614 B
Plaintext

################################################################################
# Common MSM configuration for building non-GKI-based kernels
DEFCONFIG="gki_defconfig"
function build_defconfig_fragments() {
if [[ "${VARIANT}" =~ ^(perf_defconfig)$ ]]; then
apply_defconfig_fragment ${KERNEL_DIR}/arch/${ARCH}/configs/vendor/${MSM_ARCH}_GKI.config vendor/${MSM_ARCH}-${DEFCONFIG}
fi
}
build_defconfig_fragments
function update_config() {
(cd ${OUT_DIR} && \
make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} mod2yesconfig)
}
POST_DEFCONFIG_CMDS="update_config"