Skip to content

Commit f7ea473

Browse files
committed
Merge pull request #273
4b0a375 Vagrantfile update (djb)
2 parents 921eb5d + 4b0a375 commit f7ea473

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Vagrantfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ Vagrant.configure(2) do |config|
66

77
config.vm.provision "shell", privileged: false, inline: <<-SHELL
88
sudo locale-gen UTF-8
9-
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
10-
sudo apt-get update
11-
sudo apt-get install -y cmake git gcc-arm-embedded=8-2018q4-major~trusty1
9+
sudo apt update && sudo apt-get install -y cmake git
10+
wget -O gcc.tar.bz2 https://developer.arm.com/-/media/Files/downloads/gnu-rm/8-2018q4/gcc-arm-none-eabi-8-2018-q4-major-linux.tar.bz2;
11+
tar -xf gcc.tar.bz2
12+
sudo rsync -a gcc-arm-none-eabi-8-2018-q4-major/ /usr/local/
1213
SHELL
1314

1415
config.vm.provision "shell", run: "always", privileged: false, inline: <<-SHELL

0 commit comments

Comments
 (0)