e2a92b6020
And replace many references of ${ROOT_DIR}/common with ${ROOT_DIR}/${KERNEL_DIR}, which makes it a lot easier to branch off of ACK and update the KERNEL_DIR. The variable of KERNEL_DIR will be set in build/_setup_env.sh to the directory of the build config file by default if it's not set explicitly in the build config file or in environment. Test: build test with following configs common/build.config.gki.aarch64 common-modules/virtual-device/build.config.cuttlefish.aarch64 common-modules/virtual-device/build.config.goldfish.aarch64 Bug: 162785964 Change-Id: I790ac0ded10bd790484f14c6f93d53e06c38b830 Signed-off-by: Will McVicker <willmcvicker@google.com> Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org> (cherry picked from commit 931718fa65fe5e34d143250c048f591a7d74e5f8)
22 lines
689 B
Text
22 lines
689 B
Text
DEFCONFIG=gki_defconfig
|
|
POST_DEFCONFIG_CMDS="check_defconfig && update_kasan_config"
|
|
function update_kasan_config() {
|
|
${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
|
|
-e CONFIG_KASAN \
|
|
-e CONFIG_KASAN_INLINE \
|
|
-e CONFIG_KASAN_PANIC_ON_WARN \
|
|
-e CONFIG_KCOV \
|
|
-e CONFIG_PANIC_ON_WARN_DEFAULT_ENABLE \
|
|
-d CONFIG_RANDOMIZE_BASE \
|
|
-d CONFIG_KASAN_OUTLINE \
|
|
--set-val CONFIG_FRAME_WARN 0 \
|
|
-d LTO \
|
|
-d LTO_CLANG \
|
|
-d CFI \
|
|
-d CFI_PERMISSIVE \
|
|
-d CFI_CLANG \
|
|
-d SHADOW_CALL_STACK
|
|
(cd ${OUT_DIR} && \
|
|
make ${CC_LD_ARG} O=${OUT_DIR} olddefconfig)
|
|
}
|
|
|