android_kernel_samsung_sm8650/build.config.allmodconfig
Matthias Maennich 4840539ea1 ANDROID: allmodconfig build: adopt new TOOL_ARGS export
aosp/1749720 moves the TOOL_ARGS to setup_env and makes it a proper
string export. Adopt that new format.

Bug: 189451175
Signed-off-by: Matthias Maennich <maennich@google.com>
Change-Id: Idf28c4dce9e92141c487154133333edb3b0d8e61
2021-06-28 12:19:45 +01:00

14 lines
366 B
Plaintext

DEFCONFIG=allmodconfig
HERMETIC_TOOLCHAIN=0
POST_DEFCONFIG_CMDS="update_config"
function update_config() {
${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
-d TEST_KMOD \
-e UNWINDER_FRAME_POINTER \
(cd ${OUT_DIR} && \
make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} olddefconfig)
}