diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2017-09-15 12:32:25 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-09-15 15:18:21 -0400 |
commit | c81fc661ccc90f4c54bb1b20236ce38339e6e56e (patch) | |
tree | fa168739d480b151632030f3c40b8e85e5f2789f /meta-openstack/recipes-devtools | |
parent | 19f0c979abbc72a300c0b1cb92f9328f96728f5a (diff) | |
download | meta-cloud-services-c81fc661ccc90f4c54bb1b20236ce38339e6e56e.tar.gz |
meta-openstack: qemu: match spice arch restrictions
The spice recipe is restricted to Intel x86 and x86-64 so keep 'spice'
out of the PACKAGECONFIG unless we are using one of these ARCHs.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools')
-rw-r--r-- | meta-openstack/recipes-devtools/qemu/qemu_2.%.bbappend | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/qemu/qemu_2.%.bbappend b/meta-openstack/recipes-devtools/qemu/qemu_2.%.bbappend index 9d774c4..ad1ea25 100644 --- a/meta-openstack/recipes-devtools/qemu/qemu_2.%.bbappend +++ b/meta-openstack/recipes-devtools/qemu/qemu_2.%.bbappend | |||
@@ -1,6 +1,9 @@ | |||
1 | PACKAGECONFIG[spice] = "--enable-spice,--disable-spice,spice," | 1 | PACKAGECONFIG[spice] = "--enable-spice,--disable-spice,spice," |
2 | PACKAGECONFIG[libseccomp] = "--enable-seccomp,--disable-seccomp,libseccomp,libseccomp" | 2 | PACKAGECONFIG[libseccomp] = "--enable-seccomp,--disable-seccomp,libseccomp,libseccomp" |
3 | 3 | ||
4 | PACKAGECONFIG ?= "fdt spice virtfs libcap-ng" | 4 | PACKAGECONFIG ?= "fdt virtfs libcap-ng" |
5 | PACKAGECONFIG_x86 ?= "fdt spice virtfs libcap-ng" | ||
6 | PACKAGECONFIG_x86-64 ?= "fdt spice virtfs libcap-ng" | ||
7 | |||
5 | PACKAGECONFIG_class-native = "fdt" | 8 | PACKAGECONFIG_class-native = "fdt" |
6 | PACKAGECONFIG_class-nativesdk = "fdt" | 9 | PACKAGECONFIG_class-nativesdk = "fdt" |