xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/1] Allow building of XEN from source on a system without internet access.
@ 2013-11-05  1:56 Don Slutz
  2013-11-05  1:56 ` [PATCH v2 1/1] .config: Allow all URL(s) to be specified in .config Don Slutz
  0 siblings, 1 reply; 3+ messages in thread
From: Don Slutz @ 2013-11-05  1:56 UTC (permalink / raw)
  To: xen-devel, Stefano Stabellini, Ian Jackson, Ian Campbell,
	Jan Beulich
  Cc: Don Slutz

From: Don Slutz <dslutz@verizon.com>

Changes v1 to v2:
  Reword the commit message to be clearer.

Don Slutz (1):
  .config: Allow all URL(s) to be specified in .config

 Config.mk                         | 6 +++---
 tools/firmware/etherboot/Makefile | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

-- 
1.8.4

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

* [PATCH v2 1/1] .config: Allow all URL(s) to be specified in .config
  2013-11-05  1:56 [PATCH v2 0/1] Allow building of XEN from source on a system without internet access Don Slutz
@ 2013-11-05  1:56 ` Don Slutz
  2013-11-05 13:48   ` Ian Campbell
  0 siblings, 1 reply; 3+ messages in thread
From: Don Slutz @ 2013-11-05  1:56 UTC (permalink / raw)
  To: xen-devel, Stefano Stabellini, Ian Jackson, Ian Campbell,
	Jan Beulich
  Cc: Don Slutz

From: Don Slutz <dslutz@verizon.com>

This allow building of XEN from source on a system without internet
access using either the environment or .config

Do the same with XEN_EXTFILES_URL, QEMU_REMOTE, IPXE_GIT_URL, and
IPXE_TARBALL_URL as QEMU_UPSTREAM_URL, SEABIOS_UPSTREAM_URL, etc.

Signed-off-by: Don Slutz <dslutz@verizon.com>
---
 Config.mk                         | 6 +++---
 tools/firmware/etherboot/Makefile | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Config.mk b/Config.mk
index 7f3d8c7..9b39d6c 100644
--- a/Config.mk
+++ b/Config.mk
@@ -213,15 +213,15 @@ EMBEDDED_EXTRA_CFLAGS += -fno-exceptions
 XSM_ENABLE ?= n
 FLASK_ENABLE ?= $(XSM_ENABLE)
 
-XEN_EXTFILES_URL=http://xenbits.xen.org/xen-extfiles
+XEN_EXTFILES_URL ?= http://xenbits.xen.org/xen-extfiles
 # All the files at that location were downloaded from elsewhere on
 # the internet.  The original download URL is preserved as a comment
 # near the place in the Xen Makefiles where the file is used.
 
 ifeq ($(GIT_HTTP),y)
-QEMU_REMOTE=http://xenbits.xen.org/git-http/qemu-xen-unstable.git
+QEMU_REMOTE ?= http://xenbits.xen.org/git-http/qemu-xen-unstable.git
 else
-QEMU_REMOTE=git://xenbits.xen.org/qemu-xen-unstable.git
+QEMU_REMOTE ?= git://xenbits.xen.org/qemu-xen-unstable.git
 endif
 
 ifeq ($(GIT_HTTP),y)
diff --git a/tools/firmware/etherboot/Makefile b/tools/firmware/etherboot/Makefile
index 15561fc..a0578d2 100644
--- a/tools/firmware/etherboot/Makefile
+++ b/tools/firmware/etherboot/Makefile
@@ -5,14 +5,14 @@ include $(XEN_ROOT)/tools/Rules.mk
 include Config
 
 ifeq ($(GIT_HTTP),y)
-IPXE_GIT_URL := http://git.ipxe.org/ipxe.git
+IPXE_GIT_URL ?= http://git.ipxe.org/ipxe.git
 else
-IPXE_GIT_URL := git://git.ipxe.org/ipxe.git
+IPXE_GIT_URL ?= git://git.ipxe.org/ipxe.git
 endif
 
 IPXE_GIT_TAG := 9a93db3f0947484e30e753bbd61a10b17336e20e
 
-IPXE_TARBALL_URL := $(XEN_EXTFILES_URL)/ipxe-git-$(IPXE_GIT_TAG).tar.gz
+IPXE_TARBALL_URL ?= $(XEN_EXTFILES_URL)/ipxe-git-$(IPXE_GIT_TAG).tar.gz
 
 D=ipxe
 T=ipxe.tar.gz
-- 
1.8.4

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

* Re: [PATCH v2 1/1] .config: Allow all URL(s) to be specified in .config
  2013-11-05  1:56 ` [PATCH v2 1/1] .config: Allow all URL(s) to be specified in .config Don Slutz
@ 2013-11-05 13:48   ` Ian Campbell
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Campbell @ 2013-11-05 13:48 UTC (permalink / raw)
  To: Don Slutz; +Cc: Stefano Stabellini, Ian Jackson, Jan Beulich, xen-devel

On Mon, 2013-11-04 at 20:56 -0500, Don Slutz wrote:
> From: Don Slutz <dslutz@verizon.com>
> 
> This allow building of XEN from source on a system without internet
> access using either the environment or .config
> 
> Do the same with XEN_EXTFILES_URL, QEMU_REMOTE, IPXE_GIT_URL, and
> IPXE_TARBALL_URL as QEMU_UPSTREAM_URL, SEABIOS_UPSTREAM_URL, etc.
> 
> Signed-off-by: Don Slutz <dslutz@verizon.com>

I've taken this to be a tools patch and therefore acked + applied it,
thanks.

Ian.

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

end of thread, other threads:[~2013-11-05 13:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-05  1:56 [PATCH v2 0/1] Allow building of XEN from source on a system without internet access Don Slutz
2013-11-05  1:56 ` [PATCH v2 1/1] .config: Allow all URL(s) to be specified in .config Don Slutz
2013-11-05 13:48   ` Ian Campbell

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).