diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2018-06-01 10:29:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-07 08:52:55 +0100 |
commit | 484b48b814eb776085e5da07bf7c956f4190636a (patch) | |
tree | fa9bee1d88fb1814ce4340018f547f7587fd8c62 /meta/recipes-devtools/qemu/qemu.inc | |
parent | f8ec8e89bbe913dd8afcf5136efc64a1d2793a8f (diff) | |
download | poky-484b48b814eb776085e5da07bf7c956f4190636a.tar.gz |
qemu: add PACKAGECONFIG for virglrenderer, usb-redir and spice
* drop "fdt sdl" listed twice in PACKAGECONFIG
* keep all 3 disabled by default
* spice, usbredir recipes will eventually be in meta-networking layer
(you can use jansa/spice branch from meta-openembedded-contrib repository)
* virglrenderer recipe will eventually be in oe-core layer
(you can use jansa/qemu branch from openembedded-core-contrib repository)
(From OE-Core rev: ebb6ef1dbc7e03a4b7030b3056bd0fa59fdd047b)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu.inc')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index dc73df813a..773ac81a6e 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -74,10 +74,9 @@ do_install_append() { | |||
74 | # END of qemu-mips workaround | 74 | # END of qemu-mips workaround |
75 | 75 | ||
76 | PACKAGECONFIG ??= " \ | 76 | PACKAGECONFIG ??= " \ |
77 | fdt sdl \ | 77 | fdt sdl kvm \ |
78 | fdt sdl kvm \ | 78 | ${@bb.utils.filter('DISTRO_FEATURES', 'alsa xen', d)} \ |
79 | ${@bb.utils.filter('DISTRO_FEATURES', 'alsa xen', d)} \ | 79 | " |
80 | " | ||
81 | PACKAGECONFIG_class-native ??= "fdt alsa kvm" | 80 | PACKAGECONFIG_class-native ??= "fdt alsa kvm" |
82 | PACKAGECONFIG_class-nativesdk ??= "fdt sdl kvm" | 81 | PACKAGECONFIG_class-nativesdk ??= "fdt sdl kvm" |
83 | 82 | ||
@@ -115,5 +114,10 @@ PACKAGECONFIG[bzip2] = "--enable-bzip2,--disable-bzip2,bzip2" | |||
115 | PACKAGECONFIG[bluez] = "--enable-bluez,--disable-bluez,${BLUEZ}" | 114 | PACKAGECONFIG[bluez] = "--enable-bluez,--disable-bluez,${BLUEZ}" |
116 | PACKAGECONFIG[libiscsi] = "--enable-libiscsi,--disable-libiscsi" | 115 | PACKAGECONFIG[libiscsi] = "--enable-libiscsi,--disable-libiscsi" |
117 | PACKAGECONFIG[kvm] = "--enable-kvm,--disable-kvm" | 116 | PACKAGECONFIG[kvm] = "--enable-kvm,--disable-kvm" |
117 | PACKAGECONFIG[virglrenderer] = "--enable-virglrenderer,--disable-virglrenderer,virglrenderer" | ||
118 | # spice will be in meta-networking layer | ||
119 | PACKAGECONFIG[spice] = "--enable-spice,--disable-spice,spice" | ||
120 | # usbredir will be in meta-networking layer | ||
121 | PACKAGECONFIG[usb-redir] = "--enable-usb-redir,--disable-usb-redir,usbredir" | ||
118 | 122 | ||
119 | INSANE_SKIP_${PN} = "arch" | 123 | INSANE_SKIP_${PN} = "arch" |