Skip to content

Commit 6ac81f0

Browse files
author
MDM63
committed
Fixed Vagrant file, again.
1 parent 39de8c5 commit 6ac81f0

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

Vagrantfile

+8-3
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,19 @@ Vagrant.configure(2) do |config|
1414
# boxes at https://atlas.hashicorp.com/search.
1515
config.vm.box = "ubuntu/trusty64"
1616
config.vm.synced_folder ".", "/home/vagrant/inav"
17-
17+
config.vm.hostname = "iNavDev"
18+
config.vm.define "iNavDev"
19+
config.vm.provider :virtualbox do |vb|
20+
vb.name = "iNavDev"
21+
end
1822
# Enable provisioning with a shell script. Additional provisioners such as
1923
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
2024
# documentation for more information about their specific syntax and use.
2125
config.vm.provision "shell", inline: <<-SHELL
22-
sudo add-apt-repository ppa:terry.guo/gcc-arm-embedded
26+
sudo apt-get remove -y --force-yes gcc-arm-none-eabi ruby
2327
sudo apt-add-repository ppa:brightbox/ruby-ng
28+
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa
2429
sudo apt-get update
25-
sudo apt-get install -y --force-yes git gcc-arm-none-eabi=4.9.3.2015q3-1trusty1 libnewlib-arm-none-eabi ruby2.4 ruby2.4-dev
30+
sudo apt-get install -y --force-yes git gcc-arm-embedded ruby2.4 ruby2.4-dev
2631
SHELL
2732
end

0 commit comments

Comments
 (0)