From 92695d8e2603d3d78b6ce5bdba7dcb8535d98285 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 1 Jul 2010 02:28:30 +0200 Subject: [PATCH 1/1] Use http instead of ftp where possible. This can avoid some problems in firewalled environments. --- summon-arm-toolchain | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/summon-arm-toolchain b/summon-arm-toolchain index 6f268e2..7977d8d 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -54,13 +54,13 @@ echo "Downloading binutils sources..." wget -c http://ftp.gnu.org/gnu/binutils/${BINUTILS}.tar.bz2 echo "Downloading gcc sources..." -wget -c ftp://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.bz2 +wget -c http://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.bz2 echo "Downloading newlib sources..." wget -c ftp://sources.redhat.com/pub/newlib/${NEWLIB}.tar.gz echo "Downloading gdb sources..." -wget -c ftp://ftp.gnu.org/gnu/gdb/${GDB}.tar.bz2 +wget -c http://ftp.gnu.org/gnu/gdb/${GDB}.tar.bz2 if [ ${LIBSTM32_EN} != 0 ]; then if [ ! -e libcmsis-${LIBCMSIS}.tar.bz2 ]; then -- 2.30.2