mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 11:26:02 +09:00
This was previously not possible due to the lack of kernel module signing support in BoringSSL. Said support has now landed in Kernel Build Tools. Fixes:bce40b72a3("ANDROID: Disable hermetic toolchain for allmodconfig builds") Signed-off-by: Lee Jones <lee.jones@linaro.org> Change-Id: Ideddac33d8d79f2819a9f68e3e80a0b045e58907 (cherry picked from commit055fcf7583)
14 lines
402 B
Plaintext
14 lines
402 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 \
|
|
-d DYNAMIC_FTRACE \
|
|
-e UNWINDER_FRAME_POINTER \
|
|
|
|
(cd ${OUT_DIR} && \
|
|
make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} olddefconfig)
|
|
}
|