Matthias Maennich | 884416f | 2019-08-29 12:41:43 +0100 | [diff] [blame] | 1 | DEFCONFIG=allmodconfig |
Matthias Maennich | 884416f | 2019-08-29 12:41:43 +0100 | [diff] [blame] | 2 | |
Matthias Maennich | 884416f | 2019-08-29 12:41:43 +0100 | [diff] [blame] | 3 | POST_DEFCONFIG_CMDS="update_config" |
| 4 | function update_config() { |
| 5 | ${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \ |
| 6 | -d TEST_KMOD \ |
Quentin Perret | c4b45e0 | 2019-12-05 05:20:27 +0000 | [diff] [blame] | 7 | -e UNWINDER_FRAME_POINTER \ |
Greg Kroah-Hartman | 936699a | 2021-09-16 09:45:56 +0200 | [diff] [blame] | 8 | -d INFINIBAND_QIB \ |
Nick Desaulniers | 7321041 | 2022-03-30 16:07:51 -0700 | [diff] [blame] | 9 | -d SAMPLES \ |
| 10 | -d BPFILTER \ |
Yifan Hong | e28f3d0 | 2023-03-14 14:32:15 -0700 | [diff] [blame^] | 11 | -d AF_RXRPC \ |
| 12 | -d AFS_FS \ |
Alistair Delva | dd88a4a | 2019-10-31 10:23:42 -0700 | [diff] [blame] | 13 | |
Matthias Maennich | 884416f | 2019-08-29 12:41:43 +0100 | [diff] [blame] | 14 | (cd ${OUT_DIR} && \ |
Matthias Maennich | 4840539 | 2021-06-28 12:17:21 +0100 | [diff] [blame] | 15 | make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} olddefconfig) |
Matthias Maennich | 884416f | 2019-08-29 12:41:43 +0100 | [diff] [blame] | 16 | } |