diff options
author | Alistair Francis <alistair.francis@wdc.com> | 2018-05-25 08:56:36 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-02 09:35:02 +0100 |
commit | e999816fec19750c4885e99930113bac21c225c0 (patch) | |
tree | 4fe72bd0cad1aa6ce008e8ea479b3c3a126975e0 | |
parent | 920dc165abe2484c240b76f95123f5a28f48f9ce (diff) | |
download | openembedded-core-e999816fec19750c4885e99930113bac21c225c0.tar.gz openembedded-core-e999816fec19750c4885e99930113bac21c225c0.tar.bz2 openembedded-core-e999816fec19750c4885e99930113bac21c225c0.zip |
recipes-kernel/linux: Enable NUMA Kconfig from MACHINE_FEATURES
If the user has set numa in their MACHINE_FEATURES we should enable
NUMA support in the kernel config.
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Acked-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc index 97f7ea9dbe..1ebfb606da 100644 --- a/meta/recipes-kernel/linux/linux-yocto.inc +++ b/meta/recipes-kernel/linux/linux-yocto.inc @@ -28,6 +28,8 @@ KERNEL_LD_append_nios2 = " ${TOOLCHAIN_OPTIONS}" KERNEL_FEATURES_append_qemuall=" features/debug/printk.scc" +KERNEL_FEATURES_append = " ${@bb.utils.contains('MACHINE_FEATURES', 'numa', 'features/numa/numa.scc', '', d)}" + # A KMACHINE is the mapping of a yocto $MACHINE to what is built # by the kernel. This is typically the branch that should be built, # and it can be specific to the machine or shared |