You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
493 B
18 lines
493 B
DEFCONFIG=allmodconfig
|
|
|
|
POST_DEFCONFIG_CMDS="update_config"
|
|
function update_config() {
|
|
${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
|
|
-e UNWINDER_FRAME_POINTER \
|
|
-d SAMPLES \
|
|
-d BPFILTER \
|
|
-e RANDSTRUCT_NONE \
|
|
-d RANDSTRUCT_FULL \
|
|
-d RANDSTRUCT \
|
|
-d AF_RXRPC \
|
|
-d AFS_FS \
|
|
|
|
(cd ${OUT_DIR} && \
|
|
make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} olddefconfig)
|
|
}
|