6991ab0b2d
Enable the use of the hermetic toolchain across all builds of this branch. For allmodconfig builds, also allow the use of openssl from the host. Bug: 157507870 Change-Id: Iabb1fe4f760f9821df0318934942302ffffade7c Signed-off-by: Matthias Maennich <maennich@google.com>
15 lines
465 B
Plaintext
15 lines
465 B
Plaintext
DEFCONFIG=allmodconfig
|
|
|
|
POST_DEFCONFIG_CMDS="update_config"
|
|
function update_config() {
|
|
${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
|
|
-d TEST_KMOD \
|
|
-d CPU_BIG_ENDIAN \
|
|
-e UNWINDER_FRAME_POINTER \
|
|
|
|
(cd ${OUT_DIR} && \
|
|
make O=${OUT_DIR} $archsubarch CLANG_TRIPLE=${CLANG_TRIPLE} CROSS_COMPILE=${CROSS_COMPILE} "${TOOL_ARGS[@]}" ${MAKE_ARGS} olddefconfig)
|
|
}
|
|
|
|
ADDITIONAL_HOST_TOOLS="${ADDITIONAL_HOST_TOOLS} openssl"
|