blob: 58d0cf8ef07c56b3c985ed2b7f8c109137b92bf1 [file] [log] [blame]
DEFCONFIG=bonito_defconfig
KERNEL_DIR=private/msm-google
. ${ROOT_DIR}/${KERNEL_DIR}/build.config.common.clang
POST_DEFCONFIG_CMDS="check_defconfig && update_debug_config"
function update_debug_config() {
${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
--set-val DEBUG_KMEMLEAK_EARLY_LOG_SIZE 4500 \
-e CONFIG_DEBUG_KMEMLEAK \
-d LTO \
-d LTO_CLANG \
-d CFI \
-d CFI_PERMISSIVE \
-d CFI_CLANG
(cd ${OUT_DIR} && \
make ${CC_LD_ARG} O=${OUT_DIR} olddefconfig)
}