From: Ian Campbell <Ian.Campbell@citrix.com>
To: George Dunlap <george.dunlap@eu.citrix.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Subject: Re: [PATCH 2 of 3 v2] tools: Install pv bootloaders in libexec rather than /usr/bin
Date: Tue, 15 May 2012 14:50:12 +0100 [thread overview]
Message-ID: <1337089812.14297.49.camel@zakaz.uk.xensource.com> (raw)
In-Reply-To: <4503705206f3ca3cf000.1337077985@kodo2>
On Tue, 2012-05-15 at 11:33 +0100, George Dunlap wrote:
> pygrub and xenpvnetboot are meant to be run by tools, and not by the user,
> and thus should be in /usr/lib/xen/bin rather than /usr/bin.
>
> Because most config files will still have an absolute path pointing to
> /usr/bin/pygrub, make a symbolic link that we will deprecate.
>
> Signed-off-by: George Dunlap <george.dunlap@eu.ctirix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
>
> diff -r 662e2f6be283 -r 4503705206f3 tools/misc/Makefile
> --- a/tools/misc/Makefile Tue May 15 11:20:53 2012 +0100
> +++ b/tools/misc/Makefile Tue May 15 11:20:55 2012 +0100
> @@ -18,7 +18,7 @@ SUBDIRS-$(CONFIG_LOMOUNT) += lomount
> SUBDIRS-$(CONFIG_MINITERM) += miniterm
> SUBDIRS := $(SUBDIRS-y)
>
> -INSTALL_BIN-y := xencons xenpvnetboot
> +INSTALL_BIN-y := xencons
> INSTALL_BIN-$(CONFIG_X86) += xen-detect
> INSTALL_BIN := $(INSTALL_BIN-y)
>
> @@ -27,6 +27,9 @@ INSTALL_SBIN-$(CONFIG_X86) += xen-hvmctx
> INSTALL_SBIN-$(CONFIG_MIGRATE) += xen-hptool
> INSTALL_SBIN := $(INSTALL_SBIN-y)
>
> +INSTALL_PRIVBIN-y := xenpvnetboot
> +INSTALL_PRIVBIN := $(INSTALL_PRIVBIN-y)
> +
> # Include configure output (config.h) to headers search path
> CFLAGS += -I$(XEN_ROOT)/tools
>
> @@ -41,8 +44,10 @@ build: $(TARGETS)
> install: build
> $(INSTALL_DIR) $(DESTDIR)$(BINDIR)
> $(INSTALL_DIR) $(DESTDIR)$(SBINDIR)
> + $(INSTALL_DIR) $(DESTDIR)$(PRIVATE_BINDIR)
> $(INSTALL_PYTHON_PROG) $(INSTALL_BIN) $(DESTDIR)$(BINDIR)
> $(INSTALL_PYTHON_PROG) $(INSTALL_SBIN) $(DESTDIR)$(SBINDIR)
> + $(INSTALL_PYTHON_PROG) $(INSTALL_PRIVBIN) $(DESTDIR)$(PRIVATE_BINDIR)
> set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d install-recurse; done
>
> .PHONY: clean
> diff -r 662e2f6be283 -r 4503705206f3 tools/pygrub/Makefile
> --- a/tools/pygrub/Makefile Tue May 15 11:20:53 2012 +0100
> +++ b/tools/pygrub/Makefile Tue May 15 11:20:55 2012 +0100
> @@ -11,9 +11,11 @@ build:
> .PHONY: install
> install: all
> CC="$(CC)" CFLAGS="$(CFLAGS)" $(PYTHON) setup.py install \
> - $(PYTHON_PREFIX_ARG) --root="$(DESTDIR)" --force
> - $(INSTALL_PYTHON_PROG) src/pygrub $(DESTDIR)/$(BINDIR)/pygrub
> + $(PYTHON_PREFIX_ARG) --root="$(DESTDIR)" \
> + --install-scripts=$(DESTDIR)/$(PRIVATE_BINDIR) --force
> + $(INSTALL_PYTHON_PROG) src/pygrub $(DESTDIR)/$(PRIVATE_BINDIR)/pygrub
> $(INSTALL_DIR) $(DESTDIR)/var/run/xend/boot
> + ln -sf $(PRIVATE_BINDIR)/pygrub $(DESTDIR)/$(BINDIR)
>
> .PHONY: clean
> clean:
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2012-05-15 13:50 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-15 10:33 [PATCH 0 of 3 v2] tools: Move bootloaders to libexec directory George Dunlap
2012-05-15 10:33 ` [PATCH 1 of 3 v2] libxl: Look for bootloader in libexec path George Dunlap
2012-05-15 13:49 ` Ian Campbell
2012-05-15 10:33 ` [PATCH 2 of 3 v2] tools: Install pv bootloaders in libexec rather than /usr/bin George Dunlap
2012-05-15 13:50 ` Ian Campbell [this message]
2012-05-15 10:33 ` [PATCH 3 of 3 v2] libxl: Warn that /usr/bin/pygrub is deprecated George Dunlap
2012-05-15 13:50 ` Ian Campbell
2012-05-15 11:12 ` [PATCH 0 of 3 v2] tools: Move bootloaders to libexec directory George Dunlap
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1337089812.14297.49.camel@zakaz.uk.xensource.com \
--to=ian.campbell@citrix.com \
--cc=george.dunlap@eu.citrix.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).