diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2015-06-03 11:07:24 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-11 23:55:41 +0100 |
commit | abd4f4987b3ca15e92aafffff0e9a37ea9df081c (patch) | |
tree | fcd15dd94fb19953d49b4a8fa0719e25729e2ef3 /meta | |
parent | 0a3e8eb9f592c3f1edd2c7521855f7406541651a (diff) | |
download | openembedded-core-contrib-abd4f4987b3ca15e92aafffff0e9a37ea9df081c.tar.gz |
qemu: Add support for UUID
Native qemu is used to to create VMDK and VDI images.
VDI images need support for UUID, otherwise the resulting
image will not boot.
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 4274b252e5b..ca94fb223d9 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc @@ -90,7 +90,7 @@ PACKAGECONFIG ??= " \ fdt sdl alsa \ ${@bb.utils.contains('DISTRO_FEATURES', 'xen', 'xen', '', d)} \ " -PACKAGECONFIG_class-native ??= "fdt alsa" +PACKAGECONFIG_class-native ??= "fdt alsa uuid" PACKAGECONFIG_class-nativesdk ??= "fdt sdl" NATIVEDEPS = "" NATIVEDEPS_class-native = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libxext-native', '',d)}" |