summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/kernel.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-02 16:27:12 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-03 08:51:57 +0100
commit9b1db65e7db4cab89e0ffe235736e1cd7a10740b (patch)
tree6590a91e4ecea3c8c0f1937a325bd6a855741d5d /meta/classes-recipe/kernel.bbclass
parent36035d2eb0ef9208c009b0a54e232cdfa5f7d6fe (diff)
downloadpoky-9b1db65e7db4cab89e0ffe235736e1cd7a10740b.tar.gz
kernel: Use consistent make flags for menuconfig
We're currently only passing in a subset of the kernel make flags to menuconfig. Fix this to be consistent with all the other kernel operations since these are becomming increasingly reliant on host compilers and flags and target toolchains as well. (From OE-Core rev: 8c616bc090d1834a21073a33209323220c05d2e5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/kernel.bbclass')
-rw-r--r--meta/classes-recipe/kernel.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes-recipe/kernel.bbclass b/meta/classes-recipe/kernel.bbclass
index 0d3533363d..de1b80d0ae 100644
--- a/meta/classes-recipe/kernel.bbclass
+++ b/meta/classes-recipe/kernel.bbclass
@@ -643,7 +643,8 @@ addtask savedefconfig after do_configure
643 643
644inherit cml1 644inherit cml1
645 645
646KCONFIG_CONFIG_COMMAND:append = " PAHOLE=false LD='${KERNEL_LD}' HOSTLDFLAGS='${BUILD_LDFLAGS}'" 646# Need LD, HOSTLDFLAGS and more for config operations
647KCONFIG_CONFIG_COMMAND:append = " ${EXTRA_OEMAKE}"
647 648
648EXPORT_FUNCTIONS do_compile do_transform_kernel do_transform_bundled_initramfs do_install do_configure 649EXPORT_FUNCTIONS do_compile do_transform_kernel do_transform_bundled_initramfs do_install do_configure
649 650