search for: stdgnu

Displaying 9 results from an estimated 9 matches for "stdgnu".

Did you mean: satgnu
2011 Nov 22
7
[PATCH] use ncurses-config to find all curses related libs
...happens to exist in other environments. With this change xen-unstable tools build succeeds again in SLES11 and the latest openSuSE development branch. http://lists.opensuse.org/opensuse-packaging/2011-11/msg00055.html Signed-off-by: Olaf Hering <olaf@aepfle.de> diff -r 0b1ac7b3ee4d config/StdGNU.mk --- a/config/StdGNU.mk +++ b/config/StdGNU.mk @@ -67,7 +67,7 @@ XEN_CONFIG_DIR = $(CONFIG_DIR)/xen XEN_SCRIPT_DIR = $(XEN_CONFIG_DIR)/scripts SOCKET_LIBS = -CURSES_LIBS = -lncurses +CURSES_LIBS = $(shell if ! ncurses5-config --libs 2>/dev/null ; then ncurses-config --libs ; fi) PTHREAD_L...
2012 Jun 20
9
[PATCH 0 of 1 v2] tools: honour --libdir when it is passed to ./configure
I''ve removed all the LIBLEAF bits in this version, but kept passing the libfsimage plugin location via compiler command line. If there''s a better way to do this, I''m certainly open to it. But looking at it further today I think this isn''t too horrible. Matt
2007 Mar 22
1
[PATCH] use CC for defining CPP
Since CPP is being used with CFLAGS, it should be in lock-step with CC, to avoid having to specify both CC and CPP for the build. Signed-off-by: Jan Beulich <jbeulich@novell.com> Index: 2007-03-19/config/StdGNU.mk =================================================================== --- 2007-03-19.orig/config/StdGNU.mk 2007-03-08 09:37:32.000000000 +0100 +++ 2007-03-19/config/StdGNU.mk 2007-03-21 14:33:40.000000000 +0100 @@ -1,7 +1,7 @@ AS = $(CROSS_COMPILE)as LD = $(CROSS_COMPILE)ld CC...
2012 Feb 17
4
xen-unstable unable to boot on Wheezy
Dom0 is Wheezy 64 bit with kernel 3.2.0-1-amd64 version 3.2.4-1, xen from xen-unstable.hg changeset 24823:b75664e53905 plus these patch for not fail build: http://xen.1045712.n5.nabble.com/PATCH-0-of-2-rename-libxl-yajl-gen-alloc-td5469362.html On boot start to load but after start ramdisk load server reboot without message on screen. The grub2 entry is: -----------------------------------------
2012 Feb 22
10
xen-unstable: Qemu upstream domUs not start on Wheezy
...ith kernel 3.2.0-1-amd64 version 3.2.4-1, xen from xen-unstable.hg changeset 24858:a88ba599add1 plus these patch for not fail build: http://xen.1045712.n5.nabble.com/PATCH-0-of-2-rename-libxl-yajl-gen-alloc-td5469362.html And also this change for lib patch modified with multiarch support: vi config/StdGNU.mk LIBLEAFDIR_x86_64 ?= lib DomUs PV working, domUs with qemu-upstream not start. The xl configuration file: --------------------------------- name=''PRECISEHVM'' builder="hvm" memory=1024 vcpus=2 hap=1 pae=1 acpi=1 apic=1 nx=1 vif=[''bridge=xenbr0''] #vf...
2013 Jan 25
14
[PATCH] tools: revert to using /var and /etc/
...(''etc'' and ''var'' respectively) so there is no change from that PoV. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Cc: Roger Pau Monne <roger.pau@citrix.com> Cc: Ian Jackson <ian.jackson@citrix.com? --- config/NetBSD.mk | 4 ---- config/StdGNU.mk | 7 ------- 2 files changed, 0 insertions(+), 11 deletions(-) diff --git a/config/NetBSD.mk b/config/NetBSD.mk index 12c8a34..141de7c 100644 --- a/config/NetBSD.mk +++ b/config/NetBSD.mk @@ -6,10 +6,6 @@ PRIVATE_BINDIR = $(BINDIR) DLOPEN_LIBS = -ifeq ($(PREFIX),/usr) XEN_LOCK_DIR = /v...
2010 Sep 10
8
[PATCH] disable kernel build in Xen build system
...initrd-2.6.18-xen.img 2.6.18-xen - - + Python Runtime Libraries ======================== diff -r ef7166e5640f -r 635270fe858b config/Linux.mk --- a/config/Linux.mk Fri Sep 10 09:55:19 2010 +0100 +++ b/config/Linux.mk Fri Sep 10 11:09:10 2010 +0100 @@ -1,11 +1,7 @@ include $(XEN_ROOT)/config/StdGNU.mk include $(XEN_ROOT)/config/StdGNU.mk # You may use wildcards, e.g. KERNELS=*2.6* -ifeq (ia64,$(XEN_TARGET_ARCH)) -KERNELS ?= linux-2.6-xen -else -KERNELS ?= linux-2.6-pvops -endif +KERNELS ?= XKERNELS := $(foreach kernel, $(KERNELS), \ $(patsubst buildconfigs/mk.%,%, \ __...
2011 Oct 18
18
make install not creating lib entries in /usr/lib under Ubunu 11.10
I am building xen-unstable (23860:a422e2a4451e) on Ubuntu 11.10. I noticed that the "make install" does not create lib entries in /usr/lib/. I see them only in /usr/lib64/. This is causing program like xenpaging to not find the xenctrl library (error while loading shared libraries: libxenctrl.so.4.2: cannot open shared object file: No such file or directory) Is this expected behavior or
2012 Jul 16
23
[PATCH] x86/EFI: define and use EFI_DIR make variable, defaulting to /usr/lib64/efi
# HG changeset patch # User Matt Wilson <msw@amazon.com> # Date 1342481836 0 # Branch efi # Node ID dd1ab0cae2c870942c2e1b6bc3a507b1a40dae16 # Parent 9950f2dc2ee6dfd172258a5a4ee29809b0ff8263 x86/EFI: define and use EFI_DIR make variable, defaulting to /usr/lib64/efi After commit 25594:ad08cd8e7097, EFI Xen binaries were installed to /efi instead of /usr/lib64/efi. This patch restores the