search for: xen_fullversion

Displaying 8 results from an estimated 8 matches for "xen_fullversion".

2013 Jul 17
13
[PATCH 0/3] xen: various changes to what we install in /boot
Jan suggested a couple of cleanups based upon my "xen: allow architecture to choose whether to compress installed xen binary" patch. So this series now consists of: xen: allow architecture to choose how/whether to compress installed xen binary xen: x86: drop the ".gz" suffix when installing xen: Use $(T) and $(D) aliases in install target This is based
2013 Jul 12
14
[PATCH] xen: arm: make zImage the default target which we install
From: Ian Campbell <ian.campbell@citrix.com> The zImage compatible binary is the useful one on real hardware. The relocated ELF thing is only really useful when booting directly on Fast Models. The customary suffix for that case is .axf so provide that as a target. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Cc: Wookey <wookey@linaro.org> --- xen/arch/arm/Makefile |
2011 Jun 30
0
[PATCH] x86/EFI: adjust installation logic
...nstall xen.efi into /usr/lib64/efi/; installation into /boot/efi/efi/$(EFI_VENDOR) remains dependent upon specifying EFI_VENDOR. Signed-off-by: Jan Beulich <jbeulich@novell.com> --- a/xen/Makefile +++ b/xen/Makefile @@ -35,11 +35,16 @@ _install: $(TARGET).gz ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))-$(XEN_VERSION).gz ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET)).gz $(INSTALL_DATA) $(TARGET)-syms $(DESTDIR)/boot/$(notdir $(TARGET))-syms-$(XEN_FULLVERSION) - if [ -r $(TARGET).efi -a -n "$(EFI_MOUNTPOINT)&qu...
2006 Feb 18
1
r24 - trunk/debian/patches
...000000 +0100 -+++ xen-3.0-testing.hg/xen/Makefile 2006-02-18 17:05:59.803870888 +0100 -@@ -27,6 +27,13 @@ - - install: $(TARGET).gz - [ -d $(DESTDIR)/boot ] || $(INSTALL_DIR) $(DESTDIR)/boot -+ifeq ($(XEN_TARGET_X86_PAE),y) -+ $(INSTALL_DATA) $(TARGET).gz $(DESTDIR)/boot/$(notdir $(TARGET))_pae-$(XEN_FULLVERSION).gz -+ ln -f -s $(notdir $(TARGET))_pae-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))_pae-$(XEN_VERSION).$(XEN_SUBVERSION).gz -+ ln -f -s $(notdir $(TARGET))_pae-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))_pae-$(XEN_VERSION).gz -+ ln -f -s $(notdir $(TARGET))_pae-$(XEN_FUL...
2012 Jul 16
23
[PATCH] x86/EFI: define and use EFI_DIR make variable, defaulting to /usr/lib64/efi
...'s name replaced by `.cfg`, and - until an existing diff -r 9950f2dc2ee6 -r dd1ab0cae2c8 xen/Makefile --- a/xen/Makefile Mon Jul 09 10:10:27 2012 +0100 +++ b/xen/Makefile Mon Jul 16 23:37:16 2012 +0000 @@ -36,11 +36,11 @@ build install debug clean distclean csco ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET)).gz $(INSTALL_DATA) $(TARGET)-syms $(DESTDIR)/boot/$(notdir $(TARGET))-syms-$(XEN_FULLVERSION) if [ -r $(TARGET).efi ]; then \ - [ -d $(DESTDIR)$(LIBDIR)/efi ] || $(INSTALL_DIR) $(DESTDIR)$(LIBDIR)/efi; \ - $(INSTALL_DATA) $(TARGET).efi $(DESTDIR)$(LIBDI...
2012 Aug 22
9
make uninstall can delete xen-kernels
Nice time. # make uninstall ... rm -rf //boot/*xen* ... if somebody use "xen" in kernel name (maybe as suffix), so it will be deleted from /boot/ too. Thanks. Denis.
2006 Feb 19
1
r26 - in trunk/debian: . patches
...file /tmp/dpep.Ek3jgb/xen-3.0.1+hg8743/xen/Makefile +--- xen-3.0.1+hg8743/xen/Makefile 2006-02-18 19:57:57.971524368 +0100 ++++ /tmp/dpep.Ek3jgb/xen-3.0.1+hg8743/xen/Makefile 2006-02-19 19:20:15.000000000 +0100 +@@ -8,6 +8,7 @@ + export XEN_SUBVERSION = 0 + export XEN_EXTRAVERSION = .1 + export XEN_FULLVERSION = $(XEN_VERSION).$(XEN_SUBVERSION)$(XEN_EXTRAVERSION) ++export XEN_CHANGESET ?= $(shell ((hg parents || head -n 7 ../ChangeLog || echo date: unavailable) | awk ''{FS="changeset:[ ]+"}/^changeset/{CS=$$2};{FS="date:[ ]+"}/^date/{D=$$2}; END {print D, CS}'') 2&gt...
2013 Sep 12
10
[PATCH] xen/build: Remove hacked up version of figlet
...*~ core rm -f include/asm-*/asm-offsets.h - [ -d tools/figlet ] && rm -f .banner* .PHONY: _distclean _distclean: clean @@ -113,14 +112,8 @@ delete-unfresh-files: rm -f include/xen/compile.h; \ fi -.banner: Makefile - $(MAKE) -C tools - @tools/figlet/figlet -d tools/figlet Xen $(XEN_FULLVERSION) 2>$@2 >$@1 - @cat $@1 $@2 >$@ - @rm -f $@1 $@2 - # compile.h contains dynamic build info. Rebuilt on every ''make'' invocation. -include/xen/compile.h: include/xen/compile.h.in .banner +include/xen/compile.h: include/xen/compile.h.in @sed -e ''s/@@date@@/$(shell...