Displaying 3 results from an estimated 3 matches for "config_qemu_sharedir".
2009 Jul 15
0
Bug#536175: Bug#536175: Bug#536176: xen-utils-3.4: trying xen-3.4 once breaks xen-3.2 (?)
...$(subst qemu,xen-3.4/qemu,$(docdir))
++mandir := $(subst share/man,share/xen-3.4/man,$(mandir))
+
+ configdir := /etc/xen
+--- tools/ioemu-qemu-xen/xen-setup-stubdom
++++ tools/ioemu-qemu-xen/xen-setup-stubdom
+@@ -31,7 +31,7 @@
+
+ #----------
+ cat <<END >config-host.h.new
+-#define CONFIG_QEMU_SHAREDIR "/usr/share/xen/qemu"
++#define CONFIG_QEMU_SHAREDIR "/usr/share/xen-3.4/qemu"
+ #define HOST_I386 1
+ #define HOST_LONG_BITS 32
+ #define HAVE_BYTESWAP_H 1
--- /dev/null
+++ xen-3/debian/patches/tools-ioemu-rpath.diff
@@ -0,0 +1,11 @@
+--- tools/ioemu-qemu-xen/Makefile.target
+...
2013 Sep 18
5
[PATCH] qemu-traditional: do not strip binaries during make install
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Acked-by: Matt Wilson <msw@amazon.com>
---
Makefile | 2 +-
Makefile.target | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 37c7066..594f0ef 100644
--- a/Makefile
+++ b/Makefile
@@ -243,7 +243,7 @@ endif
install: all $(if $(BUILD_DOCS),install-doc)
mkdir -p
2006 Jul 13
3
[PATCH] Update new qemu-dm to spawn vncviewer
...xs-tools-ioemu/vl.c 2006-06-30 15:41:14.000000000 -0600
+++ xen-unstable.hg-dm/tools/xs-tools-ioemu/vl.c 2006-07-12 16:16:42.000000000 -0600
@@ -111,6 +111,8 @@
/* XXX: use a two level table to limit memory usage */
#define MAX_IOPORTS 65536
+#define VNC_BASE_PORT 5900
+
const char *bios_dir = CONFIG_QEMU_SHAREDIR;
char phys_ram_file[1024];
void *ioport_opaque[MAX_IOPORTS];
@@ -121,6 +123,7 @@
int bios_size;
static DisplayState display_state;
int nographic;
+int vncviewer;
const char* keyboard_layout = NULL;
int64_t ticks_per_sec;
int boot_device = ''c'';
@@ -4801,6 +4804,7 @@
#endif...