summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn L. Villalovos <john.l.villalovos@intel.com>2016-05-05 11:55:50 -0700
committerJohn L. Villalovos <john.l.villalovos@intel.com>2016-05-05 12:19:28 -0700
commitaa9c0612ba0609546cceed86a92726df7d3e23cf (patch)
treed34ccd7012ceac1ab011c5607a56eaa26f306796
parent818b660a954f8baf9e91f6fba24f71a2b5960786 (diff)
downloadironic-python-agent-aa9c0612ba0609546cceed86a92726df7d3e23cf.tar.gz
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 (cherry picked from commit 4be5e084080cde8e53dd83e21a4ac9da3a12b6b2)
-rwxr-xr-ximagebuild/tinyipa/build-tinyipa.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/imagebuild/tinyipa/build-tinyipa.sh b/imagebuild/tinyipa/build-tinyipa.sh
index 6bd04e43..993e644a 100755
--- a/imagebuild/tinyipa/build-tinyipa.sh
+++ b/imagebuild/tinyipa/build-tinyipa.sh
@@ -43,7 +43,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"