diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2014-08-27 05:34:04 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-27 12:13:25 +0100 |
commit | 9661ce6ed5e01dd21360946c561b3c8a1ce9fc2c (patch) | |
tree | b6c6cc907cbf6765a74253a15a7fff399534f839 /meta/recipes-devtools | |
parent | f24e3456c60951d2985d7c23bdcc1f8c15d6c167 (diff) | |
download | openembedded-core-9661ce6ed5e01dd21360946c561b3c8a1ce9fc2c.tar.gz openembedded-core-9661ce6ed5e01dd21360946c561b3c8a1ce9fc2c.tar.bz2 openembedded-core-9661ce6ed5e01dd21360946c561b3c8a1ce9fc2c.zip |
qemu: add PACKAGECONFIG for numa
Add PACKAGECONFIG for numa to avoid build error:
backends/hostmem.c:21:20: fatal error: numaif.h: No such file or directory
Package numctl is from meta-oe.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index f737dedca1..11bec1c917 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc @@ -109,6 +109,7 @@ PACKAGECONFIG[fdt] = "--enable-fdt,--disable-fdt,dtc" PACKAGECONFIG[alsa] = ",,alsa-lib" PACKAGECONFIG[glx] = "--enable-glx,--disable-glx,mesa" PACKAGECONFIG[lzo] = "--enable-lzo,--disable-lzo,lzo" +PACKAGECONFIG[numa] = "--enable-numa,--disable-numa,numactl" EXTRA_OECONF += "${@bb.utils.contains('PACKAGECONFIG', 'alsa', '--audio-drv-list=oss,alsa', '', d)}" |