[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] git urls: prefix with GIT_PROTO_PREFIX
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 <Ian.Jackson@xxxxxxxxxxxxx> --- 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 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |