diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-07-06 10:54:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-17 10:54:02 +0100 |
commit | ccaef5c9a19e272b42fd40d4297d8602b4ff5a84 (patch) | |
tree | 3b8ba911bad67cd6c77f5fc69152f42b77f3d476 /meta | |
parent | 3cf4c8d3e94048b24c812f6a83ea84603c684e7a (diff) | |
download | ast2050-yocto-poky-ccaef5c9a19e272b42fd40d4297d8602b4ff5a84.zip ast2050-yocto-poky-ccaef5c9a19e272b42fd40d4297d8602b4ff5a84.tar.gz |
qemu: Explicitly add --disable-gl-accel when gl is not enabled
Default seems to be to enable GL accelaration so when
gl is not specified in PACKAGECONFIG then add the
--disable-gl-accel to really disable it.
(From OE-Core rev: 039a2f63712cbe87eb68a8c8c0cc365b74651f5a)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 707493e..e618c1d 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc @@ -38,7 +38,7 @@ do_install () { } PACKAGECONFIG ??= "gl" -PACKAGECONFIG[gl] = "--enable-gl-accel,,," +PACKAGECONFIG[gl] = "--enable-gl-accel,--disable-gl-accel,," DEPENDS_virtclass-native = "zlib-native alsa-lib-native glib-2.0-native" DEPENDS_virtclass-nativesdk = "zlib-nativesdk libsdl-nativesdk glib-2.0-nativesdk \ |