From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Jackson Subject: [PATCH] git urls: prefix with GIT_PROTO_PREFIX Date: Tue, 23 Sep 2014 18:56:58 +0100 Message-ID: <1411495018-25973-1-git-send-email-ian.jackson@eu.citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xensource.com Cc: ian.campbell@eu.citrix.com, Ian Jackson List-Id: xen-devel@lists.xenproject.org This allows the prefixing of all git clone and fetch URLs with a single fixed string. This could be used to: - clone from a local tree /path/to/something/git:/whatever/thing - use a cacheing git proxy such as found in chiark-utils Signed-off-by: Ian Jackson --- Config.mk | 8 ++++---- tools/firmware/etherboot/Makefile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Config.mk b/Config.mk index 2bb8dcc..da417a9 100644 --- a/Config.mk +++ b/Config.mk @@ -252,10 +252,10 @@ QEMU_UPSTREAM_URL ?= http://xenbits.xen.org/git-http/qemu-upstream-unstable.git QEMU_TRADITIONAL_URL ?= http://xenbits.xen.org/git-http/qemu-xen-unstable.git SEABIOS_UPSTREAM_URL ?= http://xenbits.xen.org/git-http/seabios.git else -OVMF_UPSTREAM_URL ?= git://xenbits.xen.org/ovmf.git -QEMU_UPSTREAM_URL ?= git://xenbits.xen.org/qemu-upstream-unstable.git -QEMU_TRADITIONAL_URL ?= git://xenbits.xen.org/qemu-xen-unstable.git -SEABIOS_UPSTREAM_URL ?= git://xenbits.xen.org/seabios.git +OVMF_UPSTREAM_URL ?= $(GIT_PROTO_PREFIX)git://xenbits.xen.org/ovmf.git +QEMU_UPSTREAM_URL ?= $(GIT_PROTO_PREFIX)git://xenbits.xen.org/qemu-upstream-unstable.git +QEMU_TRADITIONAL_URL ?= $(GIT_PROTO_PREFIX)git://xenbits.xen.org/qemu-xen-unstable.git +SEABIOS_UPSTREAM_URL ?= $(GIT_PROTO_PREFIX)git://xenbits.xen.org/seabios.git endif OVMF_UPSTREAM_REVISION ?= 447d264115c476142f884af0be287622cd244423 QEMU_UPSTREAM_REVISION ?= master diff --git a/tools/firmware/etherboot/Makefile b/tools/firmware/etherboot/Makefile index a0578d2..e67d862 100644 --- a/tools/firmware/etherboot/Makefile +++ b/tools/firmware/etherboot/Makefile @@ -7,7 +7,7 @@ include Config ifeq ($(GIT_HTTP),y) IPXE_GIT_URL ?= http://git.ipxe.org/ipxe.git else -IPXE_GIT_URL ?= git://git.ipxe.org/ipxe.git +IPXE_GIT_URL ?= $(GIT_PROTO_PREFIX)git://git.ipxe.org/ipxe.git endif IPXE_GIT_TAG := 9a93db3f0947484e30e753bbd61a10b17336e20e -- 1.7.10.4