All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/EFI: define and use EFI_DIR make variable, defaulting to /usr/lib64/efi
@ 2012-07-16 23:50 Matt Wilson
  2012-07-20 18:52 ` Matt Wilson
  2012-07-23  7:49 ` Jan Beulich
  0 siblings, 2 replies; 24+ messages in thread
From: Matt Wilson @ 2012-07-16 23:50 UTC (permalink / raw)
  To: Jan Beulich; +Cc: Olaf Hering, xen-devel@lists.xen.org

# 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 previous
behviour established in commit 23645:638f31a30b6c.

Signed-off-by: Matt Wilson <msw@amazon.com>
Reported-by: Olaf Hering <olaf@aepfle.de>

diff -r 9950f2dc2ee6 -r dd1ab0cae2c8 Config.mk
--- a/Config.mk	Mon Jul 09 10:10:27 2012 +0100
+++ b/Config.mk	Mon Jul 16 23:37:16 2012 +0000
@@ -48,6 +48,7 @@ SHAREDIR    ?= $(PREFIX)/share
 DOCDIR      ?= $(SHAREDIR)/doc/xen
 MANDIR      ?= $(SHAREDIR)/man
 BASH_COMPLETION_DIR ?= $(CONFIG_DIR)/bash_completion.d
+EFI_DIR     ?= /usr/lib64/efi
 
 # arguments: variable, common path part, path to test, if yes, if no
 define setvar_dir
diff -r 9950f2dc2ee6 -r dd1ab0cae2c8 docs/misc/efi.markdown
--- a/docs/misc/efi.markdown	Mon Jul 09 10:10:27 2012 +0100
+++ b/docs/misc/efi.markdown	Mon Jul 16 23:37:16 2012 +0000
@@ -4,10 +4,12 @@ newer. Additionally, the binutils build 
 for the x86_64-pep emulation (i.e. `--enable-targets=x86_64-pep` or an option
 of equivalent effect should be passed to the configure script).
 
-Once built, `make install-xen` can place the resulting binary directly into
+Once built, `make install-xen` will place the resulting binary directly into
 the EFI boot partition, provided `EFI_VENDOR` is set in the environment (and
 `EFI_MOUNTPOINT` is overridden as needed, should the default of `/boot/efi` not
-match your system).
+match your system). The xen.efi binary will also be installed in
+`/usr/lib64/efi/`, unless `EFI_DIR` is set in the environment to 
+override the default.
 
 The binary itself will require a configuration file (names with the `.efi`
 extension of the binary'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)$(LIBDIR)/efi/$(notdir $(TARGET))-$(XEN_FULLVERSION).efi; \
-		ln -sf $(notdir $(TARGET))-$(XEN_FULLVERSION).efi $(DESTDIR)$(LIBDIR)/efi/$(notdir $(TARGET))-$(XEN_VERSION).$(XEN_SUBVERSION).efi; \
-		ln -sf $(notdir $(TARGET))-$(XEN_FULLVERSION).efi $(DESTDIR)$(LIBDIR)/efi/$(notdir $(TARGET))-$(XEN_VERSION).efi; \
-		ln -sf $(notdir $(TARGET))-$(XEN_FULLVERSION).efi $(DESTDIR)$(LIBDIR)/efi/$(notdir $(TARGET)).efi; \
+		[ -d $(DESTDIR)$(EFI_DIR) ] || $(INSTALL_DIR) $(DESTDIR)$(EFI_DIR); \
+		$(INSTALL_DATA) $(TARGET).efi $(DESTDIR)$(EFI_DIR)/$(notdir $(TARGET))-$(XEN_FULLVERSION).efi; \
+		ln -sf $(notdir $(TARGET))-$(XEN_FULLVERSION).efi $(DESTDIR)$(EFI_DIR)/$(notdir $(TARGET))-$(XEN_VERSION).$(XEN_SUBVERSION).efi; \
+		ln -sf $(notdir $(TARGET))-$(XEN_FULLVERSION).efi $(DESTDIR)$(EFI_DIR)/$(notdir $(TARGET))-$(XEN_VERSION).efi; \
+		ln -sf $(notdir $(TARGET))-$(XEN_FULLVERSION).efi $(DESTDIR)$(EFI_DIR)/$(notdir $(TARGET)).efi; \
 		if [ -n '$(EFI_MOUNTPOINT)' -a -n '$(EFI_VENDOR)' ]; then \
 			$(INSTALL_DATA) $(TARGET).efi $(DESTDIR)$(EFI_MOUNTPOINT)/efi/$(EFI_VENDOR)/$(notdir $(TARGET))-$(XEN_FULLVERSION).efi; \
 		elif [ "$(DESTDIR)" = "$(patsubst $(shell cd $(XEN_ROOT) && pwd)/%,%,$(DESTDIR))" ]; then \

^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2012-07-24 13:51 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-16 23:50 [PATCH] x86/EFI: define and use EFI_DIR make variable, defaulting to /usr/lib64/efi Matt Wilson
2012-07-20 18:52 ` Matt Wilson
2012-07-23  7:49 ` Jan Beulich
2012-07-23  8:05   ` Olaf Hering
2012-07-23  8:20     ` Jan Beulich
2012-07-23  8:36       ` Olaf Hering
2012-07-23  8:58         ` Jan Beulich
2012-07-23  8:43       ` Ian Campbell
2012-07-23  9:07         ` Jan Beulich
2012-07-23  9:35           ` Ian Campbell
2012-07-23 10:03             ` Jan Beulich
2012-07-23 10:25               ` Ian Campbell
2012-07-23 10:28                 ` Jan Beulich
2012-07-24  8:57               ` Ian Campbell
2012-07-24  9:39                 ` Matt Wilson
2012-07-24 10:40                   ` Jan Beulich
2012-07-24  9:40                 ` Jan Beulich
2012-07-24 10:11                   ` Ian Campbell
2012-07-24 10:43                     ` Jan Beulich
2012-07-24 12:04                       ` Matt Wilson
2012-07-24 12:28                         ` Jan Beulich
2012-07-24 12:38                           ` Ian Campbell
2012-07-24 12:53                             ` Jan Beulich
2012-07-24 13:51                           ` [PATCH v2] " Matt Wilson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.