diff options
author | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-02-10 18:15:24 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-14 08:40:57 +0000 |
commit | 548ab15d6dd0bedd355b844954de6909d47496a1 (patch) | |
tree | 72495a66c4a56954c887ee6cf4d130948b721521 | |
parent | 62eb5e6ddfd85b723eb2a69f79670c2191553814 (diff) | |
download | poky-548ab15d6dd0bedd355b844954de6909d47496a1.tar.gz |
qemu: Update PACKAGECONFIG[xen] and add xen to defaults
* Add build and runtime dependencies for PACKAGECONFIG[xen]
* Add xen as a default PACKAGECONFIG option when it is part of
DISTRO_FEATURES
(From OE-Core rev: d3c82cd6019ad43af489fdc518a3f8a9f31f6777)
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 49415c1250..4225db7573 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -86,7 +86,10 @@ do_install_append() { | |||
86 | } | 86 | } |
87 | # END of qemu-mips workaround | 87 | # END of qemu-mips workaround |
88 | 88 | ||
89 | PACKAGECONFIG ??= "fdt sdl alsa" | 89 | PACKAGECONFIG ??= " \ |
90 | fdt sdl alsa \ | ||
91 | ${@bb.utils.contains('DISTRO_FEATURES', 'xen', 'xen', '', d)} \ | ||
92 | " | ||
90 | PACKAGECONFIG_class-native ??= "fdt alsa" | 93 | PACKAGECONFIG_class-native ??= "fdt alsa" |
91 | PACKAGECONFIG_class-nativesdk ??= "fdt sdl" | 94 | PACKAGECONFIG_class-nativesdk ??= "fdt sdl" |
92 | NATIVEDEPS = "" | 95 | NATIVEDEPS = "" |
@@ -95,7 +98,7 @@ PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl ${NATIVEDEPS}," | |||
95 | PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr,--disable-virtfs,libcap attr," | 98 | PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr,--disable-virtfs,libcap attr," |
96 | PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio," | 99 | PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio," |
97 | PACKAGECONFIG[xfs] = "--enable-xfsctl,--disable-xfsctl,xfsprogs," | 100 | PACKAGECONFIG[xfs] = "--enable-xfsctl,--disable-xfsctl,xfsprogs," |
98 | PACKAGECONFIG[xen] = "--enable-xen, --disable-xen,," | 101 | PACKAGECONFIG[xen] = "--enable-xen,--disable-xen,xen,xen-libxenstore xen-libxenctrl xen-libxenguest" |
99 | PACKAGECONFIG[quorum] = "--enable-quorum, --disable-quorum, gnutls," | 102 | PACKAGECONFIG[quorum] = "--enable-quorum, --disable-quorum, gnutls," |
100 | PACKAGECONFIG[vnc-tls] = "--enable-vnc --enable-vnc-tls,--disable-vnc-tls, gnutls," | 103 | PACKAGECONFIG[vnc-tls] = "--enable-vnc --enable-vnc-tls,--disable-vnc-tls, gnutls," |
101 | PACKAGECONFIG[vnc-ws] = "--enable-vnc --enable-vnc-ws,--disable-vnc-ws, gnutls," | 104 | PACKAGECONFIG[vnc-ws] = "--enable-vnc --enable-vnc-ws,--disable-vnc-ws, gnutls," |