551c9a62bc
- Enable support for kernel decompression for gzip, bzip2, and LZMA so that kernels compressed with any of these methods can be launched. - update xenalyze, more 64bit fixes - allocate xentrace buffer metadata based on requested tbuf_size xentrace.dynamic_sized_tbuf.patch - fate#310510 - fix xenpaging xenpaging.runtime_mru_size.patch - specify policy mru size at runtime xenpaging.no_domain_id.patch - reduce memory usage in pager - bnc#625394 - set vif mtu from bridge mtu if kernel supports it vif-bridge.mtu.patch - fate#310510 - fix xenpaging xenpaging.autostart_delay.patch - decouple create/destroycreateXenPaging from _create/_removeDevices - change xenpaging variable from int to str - init xenpaging variable to 0 if xenpaging is not in config file to avoid string None coming from sxp file OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=97
40 lines
1.5 KiB
Diff
40 lines
1.5 KiB
Diff
Index: xen-4.0.2-testing/Config.mk
|
|
===================================================================
|
|
--- xen-4.0.2-testing.orig/Config.mk
|
|
+++ xen-4.0.2-testing/Config.mk
|
|
@@ -165,7 +165,7 @@ endif
|
|
# Specify which qemu-dm to use. This may be `ioemu' to use the old
|
|
# Mercurial in-tree version, or a local directory, or a git URL.
|
|
# CONFIG_QEMU ?= ../qemu-xen.git
|
|
-CONFIG_QEMU ?= $(QEMU_REMOTE)
|
|
+CONFIG_QEMU ?= ioemu-qemu-xen
|
|
|
|
QEMU_TAG := xen-4.0.2-rc2
|
|
#QEMU_TAG ?= 6d5b7ee3acfe8cc10681d2583a38398f7470ec2a
|
|
@@ -181,9 +181,9 @@ CONFIG_OCAML_XENSTORED ?= n
|
|
# Optional components
|
|
XENSTAT_XENTOP ?= y
|
|
VTPM_TOOLS ?= n
|
|
-LIBXENAPI_BINDINGS ?= n
|
|
+LIBXENAPI_BINDINGS ?= y
|
|
PYTHON_TOOLS ?= y
|
|
CONFIG_MINITERM ?= n
|
|
CONFIG_LOMOUNT ?= n
|
|
|
|
--include $(XEN_ROOT)/.config
|
|
+#-include $(XEN_ROOT)/.config
|
|
Index: xen-4.0.2-testing/tools/libxc/Makefile
|
|
===================================================================
|
|
--- xen-4.0.2-testing.orig/tools/libxc/Makefile
|
|
+++ xen-4.0.2-testing/tools/libxc/Makefile
|
|
@@ -174,7 +174,8 @@ xc_dom_bzimageloader.opic: CFLAGS += $(c
|
|
|
|
libxenguest.so.$(MAJOR).$(MINOR): LDFLAGS += $(call zlib-options,l)
|
|
libxenguest.so.$(MAJOR).$(MINOR): $(GUEST_PIC_OBJS) libxenctrl.so
|
|
- $(CC) $(CFLAGS) $(LDFLAGS) -Wl,$(SONAME_LDFLAG) -Wl,libxenguest.so.$(MAJOR) $(SHLIB_CFLAGS) -o $@ $(GUEST_PIC_OBJS) -lz -lxenctrl $(PTHREAD_LIBS)
|
|
+ $(CC) $(CFLAGS) $(LDFLAGS) -Wl,$(SONAME_LDFLAG) -Wl,libxenguest.so.$(MAJOR) $(SHLIB_CFLAGS) -o $@ $(GUEST_PIC_OBJS) -lz -lxenctrl $(PTHREAD_LIBS) $(call zlib-options,l)
|
|
+
|
|
|
|
-include $(DEPS)
|
|
|