summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/qemu/qemu.inc
diff options
context:
space:
mode:
authorChris Patterson <cjp256@gmail.com>2013-11-02 15:52:13 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-05 22:04:29 +0000
commit6a3e200e2862889e28da3b40ebce71b41f0410e1 (patch)
treecfa1c147d5058f63998fa0535d19c51aeca1e0c8 /meta/recipes-devtools/qemu/qemu.inc
parent10961366017af9fb87405878d55dcabaca5edc20 (diff)
downloadpoky-6a3e200e2862889e28da3b40ebce71b41f0410e1.tar.gz
qemu: upgrade to 1.6.1
This update also drops the following patches which appear to have been resolved upstream: - ftd_header.patch - target-i386-Fix-aflag-logic-for-CODE64-and-the-0x67-.patch - target-ppc_fix_bit_extraction.patch Qemu no longer uses the i386.ld and x86_64.ld linker scripts and the .interp section should now have a 0x1000 size with the proper path. Therefore, for nativesdk-qemu, the following patch should no longer be required and is also dropped: - relocatable_sdk.patch (From OE-Core rev: 8e22b08de2745e08421b38f8ba215bcc1de4b423) Signed-off-by: Chris Patterson <cjp256@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu.inc')
-rw-r--r--meta/recipes-devtools/qemu/qemu.inc6
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc
index 1b861d7dc9..702fe01195 100644
--- a/meta/recipes-devtools/qemu/qemu.inc
+++ b/meta/recipes-devtools/qemu/qemu.inc
@@ -20,10 +20,6 @@ SRC_URI = "\
20 file://disable-grabs.patch \ 20 file://disable-grabs.patch \
21 " 21 "
22 22
23SRC_URI_append_class-nativesdk = "\
24 file://relocatable_sdk.patch \
25 "
26
27SRC_URI_append_class-native = "\ 23SRC_URI_append_class-native = "\
28 file://fix-libcap-header-issue-on-some-distro.patch \ 24 file://fix-libcap-header-issue-on-some-distro.patch \
29 " 25 "
@@ -55,7 +51,7 @@ do_configure() {
55 KVMOPTS="--enable-kvm" 51 KVMOPTS="--enable-kvm"
56 fi 52 fi
57 53
58 ${S}/configure --prefix=${prefix} --sysconfdir=${sysconfdir} --libexecdir=${libexecdir} --disable-strip ${EXTRA_OECONF} $KVMOPTS 54 ${S}/configure --prefix=${prefix} --sysconfdir=${sysconfdir} --libexecdir=${libexecdir} --localstatedir=${localstatedir} --disable-strip ${EXTRA_OECONF} $KVMOPTS
59 test ! -e ${S}/target-i386/beginend_funcs.sh || chmod a+x ${S}/target-i386/beginend_funcs.sh 55 test ! -e ${S}/target-i386/beginend_funcs.sh || chmod a+x ${S}/target-i386/beginend_funcs.sh
60} 56}
61 57