From 4be5e084080cde8e53dd83e21a4ac9da3a12b6b2 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" <john.l.villalovos@intel.com> Date: Thu, 5 May 2016 11:55:50 -0700 Subject: [PATCH] Stop using git:// and be nice to people behind proxy servers The build of tinyipa is doing a: git clone git://... Doing a git clone git://... behind a proxy server is painful. Use the 'official' QEMU github mirror and clone with https. Change-Id: Ia14835e6867b945cccb8b1987aa4881d8524561c Closes-Bug: #1578778 --- imagebuild/tinyipa/build-tinyipa.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagebuild/tinyipa/build-tinyipa.sh b/imagebuild/tinyipa/build-tinyipa.sh index 5d6fe53aa..b3e8c45ab 100755 --- a/imagebuild/tinyipa/build-tinyipa.sh +++ b/imagebuild/tinyipa/build-tinyipa.sh @@ -46,7 +46,7 @@ mkdir "$BUILDDIR" # Download TGT and Qemu-utils source git clone https://github.com/fujita/tgt.git $BUILDDIR/tmp/tgt --depth=1 --branch v1.0.62 -git clone git://git.qemu-project.org/qemu.git $BUILDDIR/tmp/qemu --depth=1 --branch v2.5.0 +git clone https://github.com/qemu/qemu.git $BUILDDIR/tmp/qemu --depth=1 --branch v2.5.0 # Create directory for python local mirror mkdir -p "$BUILDDIR/tmp/localpip"