f277f6b7cc
request - Update to changeset 20990 Xen 4.0.0 RC5. OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=34
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
Index: xen-4.0.0-testing/tools/ioemu-remote/block-vvfat.c
|
|
===================================================================
|
|
--- xen-4.0.0-testing.orig/tools/ioemu-remote/block-vvfat.c
|
|
+++ xen-4.0.0-testing/tools/ioemu-remote/block-vvfat.c
|
|
@@ -865,7 +865,8 @@ static int init_directories(BDRVVVFATSta
|
|
{
|
|
direntry_t* entry=array_get_next(&(s->directory));
|
|
entry->attributes=0x28; /* archive | volume label */
|
|
- snprintf((char*)entry->name,11,"QEMU VVFAT");
|
|
+ memcpy(entry->name,"QEMU VVF",8);
|
|
+ memcpy(entry->extension,"AT ",3);
|
|
}
|
|
|
|
/* Now build FAT, and write back information into directory */
|
|
Index: xen-4.0.0-testing/unmodified_drivers/linux-2.6/overrides.mk
|
|
===================================================================
|
|
--- xen-4.0.0-testing.orig/unmodified_drivers/linux-2.6/overrides.mk
|
|
+++ xen-4.0.0-testing/unmodified_drivers/linux-2.6/overrides.mk
|
|
@@ -11,7 +11,7 @@ ifeq ($(ARCH),ia64)
|
|
_XEN_CPPFLAGS += -DCONFIG_VMX_GUEST
|
|
endif
|
|
|
|
-_XEN_CPPFLAGS += -include $(objtree)/include/linux/autoconf.h
|
|
+_XEN_CPPFLAGS += -include $(objtree)/include/generated/autoconf.h
|
|
|
|
EXTRA_CFLAGS += $(_XEN_CPPFLAGS)
|
|
EXTRA_AFLAGS += $(_XEN_CPPFLAGS)
|