aboutsummaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorfredizzimo <fsundvik@gmail.com>2016-07-02 00:22:09 +0300
committerJack Humbert <jack.humb@gmail.com>2016-07-01 17:22:09 -0400
commitc30aba0bce989d29458bd3b56090400cb0a91d03 (patch)
tree2e45f59b758412341459372bcd7d7375e8a42e68 /Vagrantfile
parent4d4f7684e684bec319f166121463a88cd4a62703 (diff)
downloadqmk_firmware-c30aba0bce989d29458bd3b56090400cb0a91d03.tar.gz
qmk_firmware-c30aba0bce989d29458bd3b56090400cb0a91d03.zip
Add ChibiOS packages to the avr_setup script (#468)
* Add ChibiOS packages to the avr_setup script * Add git as a dependency * Rename avr_setup.sh -> install_dependencies.sh Also fix the Vagrant welcome message to reflect the new directory structure.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 42b437751..8cadeaddf 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -78,7 +78,7 @@ Vagrant.configure(2) do |config|
78 # add a # before ,args: and run 'vagrant up' to get a working 78 # add a # before ,args: and run 'vagrant up' to get a working
79 # non-updated box and then attempt to troubleshoot or open a Github issue 79 # non-updated box and then attempt to troubleshoot or open a Github issue
80 80
81 config.vm.provision "shell", run: "always", path: "./util/avr_setup.sh", args: "-update" 81 config.vm.provision "shell", run: "always", path: "./util/install_dependencies.sh", args: "-update"
82 82
83 config.vm.post_up_message = <<-EOT 83 config.vm.post_up_message = <<-EOT
84 Log into the VM using 'vagrant ssh' on OSX or from Git Bash (Win) 84 Log into the VM using 'vagrant ssh' on OSX or from Git Bash (Win)
@@ -91,7 +91,7 @@ Vagrant.configure(2) do |config|
91 91
92 Or you can copy and paste the example line below. 92 Or you can copy and paste the example line below.
93 93
94 cd /vagrant; cd keyboard; cd ergodox_ez; make clean; make 94 cd /vagrant; cd keyboards; cd ergodox_ez; make clean; make
95 95
96 96
97 EOT 97 EOT