This reverts commiteb57c31115. This branch looks clean of WERROR warnings. Let's try to re-enable it. Fixes:eb57c31115("ANDROID: allmodconfig: disable WERROR") Signed-off-by: Lee Jones <joneslee@google.com> Change-Id: I0106dcd43d7e4b4e20ac768f3faac40285bc837b Signed-off-by: Lee Jones <joneslee@google.com>
15 lines
411 B
Plaintext
15 lines
411 B
Plaintext
DEFCONFIG=allmodconfig
|
|
|
|
POST_DEFCONFIG_CMDS="update_config"
|
|
function update_config() {
|
|
${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
|
|
-d TEST_KMOD \
|
|
-e UNWINDER_FRAME_POINTER \
|
|
-d INFINIBAND_QIB \
|
|
-d SAMPLES \
|
|
-d BPFILTER \
|
|
|
|
(cd ${OUT_DIR} && \
|
|
make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} olddefconfig)
|
|
}
|