7133ff2a3e
These aren't portable yet when building with a Bionic based sysroot. Disable building them for now so that we can land support for UAPI_HEADER_TEST. Bug: 190019968 Signed-off-by: Nick Desaulniers <ndesaulniers@google.com> Change-Id: Ice3d3c55bbf79dd08265f168e49e2058231c181d
15 lines
418 B
Plaintext
15 lines
418 B
Plaintext
DEFCONFIG=allmodconfig
|
|
|
|
POST_DEFCONFIG_CMDS="update_config"
|
|
function update_config() {
|
|
${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
|
|
-e UNWINDER_FRAME_POINTER \
|
|
-d WERROR \
|
|
-d PINCTRL_THUNDERBAY \
|
|
-d SAMPLES \
|
|
-d BPFILTER \
|
|
|
|
(cd ${OUT_DIR} && \
|
|
make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} olddefconfig)
|
|
}
|