diff options
author | Mihai Prica <mihai.prica@intel.com> | 2013-04-04 15:09:15 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-04 14:04:42 +0100 |
commit | 6ad0467ac859bfbff49116164d6b5d82c4d09c4f (patch) | |
tree | 84f300e6ff68e7cdabaa4074b5c18f1a5901baac /meta/recipes-devtools | |
parent | 88f446661b7b211045d42f012f49630cb19f0842 (diff) | |
download | poky-6ad0467ac859bfbff49116164d6b5d82c4d09c4f.tar.gz |
qemu: Enabled SDL when compiling for target architecture
Enables qemu to run images with video output without the need for vncviewer.
(From OE-Core rev: 30d5c1d5bc9a3931a09425962d980a3571dc56f3)
Signed-off-by: Mihai Prica <mihai.prica@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 1b5b569eee..06fa88b84b 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -1,7 +1,7 @@ | |||
1 | DESCRIPTION = "open source processor emulator" | 1 | DESCRIPTION = "open source processor emulator" |
2 | HOMEPAGE = "http://qemu.org" | 2 | HOMEPAGE = "http://qemu.org" |
3 | LICENSE = "GPLv2 & LGPLv2.1" | 3 | LICENSE = "GPLv2 & LGPLv2.1" |
4 | DEPENDS = "glib-2.0 zlib alsa-lib virtual/libx11 pixman dtc" | 4 | DEPENDS = "glib-2.0 zlib alsa-lib virtual/libx11 pixman dtc libsdl" |
5 | DEPENDS_class-native = "zlib-native alsa-lib-native glib-2.0-native pixman-native dtc-native" | 5 | DEPENDS_class-native = "zlib-native alsa-lib-native glib-2.0-native pixman-native dtc-native" |
6 | DEPENDS_class-nativesdk = "nativesdk-zlib nativesdk-libsdl nativesdk-glib-2.0 nativesdk-pixman nativesdk-dtc" | 6 | DEPENDS_class-nativesdk = "nativesdk-zlib nativesdk-libsdl nativesdk-glib-2.0 nativesdk-pixman nativesdk-dtc" |
7 | RDEPENDS_${PN}_class-nativesdk = "nativesdk-libsdl" | 7 | RDEPENDS_${PN}_class-nativesdk = "nativesdk-libsdl" |
@@ -13,7 +13,7 @@ BBCLASSEXTEND = "native nativesdk" | |||
13 | # QEMU_TARGETS is overridable variable | 13 | # QEMU_TARGETS is overridable variable |
14 | QEMU_TARGETS ?= "arm i386 mips mipsel mips64 mips64el ppc sh4 x86_64" | 14 | QEMU_TARGETS ?= "arm i386 mips mipsel mips64 mips64el ppc sh4 x86_64" |
15 | 15 | ||
16 | SDL ?= "--disable-sdl" | 16 | SDL ?= "" |
17 | SDL_class-native ?= "" | 17 | SDL_class-native ?= "" |
18 | SDL_class-nativesdk ?= "" | 18 | SDL_class-nativesdk ?= "" |
19 | 19 | ||