Skip to content

Commit

Permalink
Ignore certificate when downloading source
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilie Gillet committed Oct 22, 2021
1 parent b30638f commit 6166ce9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 0_install-toolchain.sh
Expand Up @@ -44,7 +44,7 @@ sudo ln -s /usr /usr/local/CrossPack-AVR

# Install openocd
cd /home/vagrant
wget -nv https://downloads.sourceforge.net/project/openocd/openocd/0.11.0/openocd-0.11.0.tar.gz
wget -nv https://downloads.sourceforge.net/project/openocd/openocd/0.11.0/openocd-0.11.0.tar.gz --no-check-certificate
tar xfz openocd-0.11.0.tar.gz
cd openocd-0.11.0
./configure --enable-ftdi --enable-stlink
Expand All @@ -56,7 +56,7 @@ rm *.tar.gz

# Install stlink
cd /home/vagrant
wget -nv https://github.com/texane/stlink/archive/v1.1.0.tar.gz
wget -nv https://github.com/texane/stlink/archive/v1.1.0.tar.gz --no-check-certificate
tar xfz v1.1.0.tar.gz
cd stlink-1.1.0
./autogen.sh
Expand All @@ -80,7 +80,7 @@ sudo udevadm trigger

# Install toolchain for STM32F
cd /home/vagrant
wget -nv https://launchpad.net/gcc-arm-embedded/4.8/4.8-2013-q4-major/+download/gcc-arm-none-eabi-4_8-2013q4-20131204-linux.tar.bz2
wget -nv https://launchpad.net/gcc-arm-embedded/4.8/4.8-2013-q4-major/+download/gcc-arm-none-eabi-4_8-2013q4-20131204-linux.tar.bz2 --no-check-certificate
tar xjf gcc-arm-none-eabi-4_8-2013q4-20131204-linux.tar.bz2
sudo mv gcc-arm-none-eabi-4_8-2013q4 /usr/local/arm-4.8.3/
rm *.tar.bz2
Expand Down

0 comments on commit 6166ce9

Please sign in to comment.