diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-04-19 16:34:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-24 22:50:21 +0100 |
commit | eb0deaeef8cf6b6058fc4f1b47f6da1450f654a7 (patch) | |
tree | 70a4a29a7c4f183371f47e16dbec01dc8a7e0719 | |
parent | 8e7f1b444e2ea3cc7fe7ddbf0568f4eee15a33b0 (diff) | |
download | poky-eb0deaeef8cf6b6058fc4f1b47f6da1450f654a7.tar.gz |
qemu: disable sdl for target build
This allows qemu to build for the target in the world build.
Not sure this would make sense to run on the target.
(From OE-Core rev: 09a55b1d4354531afe692f2618bd4fa5bf2dec74)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 412bdfd837..362e9f35e5 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -8,9 +8,13 @@ QEMU_TARGETS ?= "arm i386 mips mipsel mips64 mips64el ppc sh4 x86_64" | |||
8 | 8 | ||
9 | require qemu-targets.inc | 9 | require qemu-targets.inc |
10 | 10 | ||
11 | EXTRA_OECONF += "--target-list=${@get_qemu_target_list(d)} --disable-werror --disable-vnc-tls --enable-kvm --audio-drv-list=oss,alsa --audio-card-list=ac97,es1370" | 11 | SDL ?= "--disable-sdl" |
12 | SDL_virtclass-native ?= "" | ||
13 | SDL_virtclass-nativesdk ?= "" | ||
12 | 14 | ||
13 | #EXTRA_OECOF += "--disable-sdl" | 15 | EXTRA_OECONF += "--target-list=${@get_qemu_target_list(d)} --disable-werror --disable-vnc-tls --enable-kvm --audio-drv-list=oss,alsa --audio-card-list=ac97,es1370 ${SDL}" |
16 | |||
17 | #EXTRA_OECONF += "--disable-sdl" | ||
14 | 18 | ||
15 | inherit autotools | 19 | inherit autotools |
16 | 20 | ||