[oe-commits] Yuri Bushmelev : Patch added to fix QEMU 0.10. 3 compilation on distros with FORTIFY_SOURCE enabled.

git version control git at git.openembedded.org
Tue Dec 22 09:48:03 UTC 2009


Module: openembedded.git
Branch: martin_jansa/srcpv
Commit: 4e9de808a7cc1f90f33864bdfe06fa9b917ea654
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=4e9de808a7cc1f90f33864bdfe06fa9b917ea654

Author: Yuri Bushmelev <jay4mail at gmail.com>
Date:   Tue Dec 15 23:11:46 2009 +0300

Patch added to fix QEMU 0.10.3 compilation on distros with FORTIFY_SOURCE enabled.

---

 .../fix_fortify_source_compilation.patch           |   13 +++++++++++++
 recipes/qemu/qemu_0.10.3.bb                        |    1 +
 2 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/recipes/qemu/qemu-0.10.3/fix_fortify_source_compilation.patch b/recipes/qemu/qemu-0.10.3/fix_fortify_source_compilation.patch
new file mode 100644
index 0000000..326d197
--- /dev/null
+++ b/recipes/qemu/qemu-0.10.3/fix_fortify_source_compilation.patch
@@ -0,0 +1,13 @@
+--- qemu-0.10.3/block-vvfat.c.orig	2009-05-01 21:02:44 +0400
++++ qemu-0.10.3/block-vvfat.c	2009-12-15 22:06:04 +0300
+@@ -865,7 +865,9 @@
+     {
+ 	direntry_t* entry=array_get_next(&(s->directory));
+ 	entry->attributes=0x28; /* archive | volume label */
+-	snprintf((char*)entry->name,11,"QEMU VVFAT");
++	/* snprintf((char*)entry->name,11,"QEMU VVFAT"); */
++	snprintf(entry->name, sizeof(entry->name), "QEMU VV");
++	snprintf(entry->extension, sizeof(entry->extension), "FAT");
+     }
+ 
+     /* Now build FAT, and write back information into directory */
diff --git a/recipes/qemu/qemu_0.10.3.bb b/recipes/qemu/qemu_0.10.3.bb
index f65f60d..182f4b4 100644
--- a/recipes/qemu/qemu_0.10.3.bb
+++ b/recipes/qemu/qemu_0.10.3.bb
@@ -22,6 +22,7 @@ SRC_URI = "\
     file://fix_segfault.patch;patch=1 \
     file://no-strip.patch;patch=1 \
     file://fix_baum_c_compilation.patch;patch=1 \
+    file://fix_fortify_source_compilation.patch;patch=1 \
     "
 
 S = "${WORKDIR}/qemu-${PV}"





More information about the Openembedded-commits mailing list