diff options
| author | dragon788 <github@deik.me> | 2016-01-17 17:13:08 -0600 |
|---|---|---|
| committer | dragon788 <github@deik.me> | 2016-01-17 17:13:08 -0600 |
| commit | 6774167900c93165fe39c80c47c566d6779021f8 (patch) | |
| tree | e02a1c7d79d4deab48a9d4911c37e78778952ff2 /Vagrantfile | |
| parent | ceb7257a9d9a0ed5a20af183f421285a2db36e62 (diff) | |
| download | qmk_firmware-6774167900c93165fe39c80c47c566d6779021f8.tar.gz qmk_firmware-6774167900c93165fe39c80c47c566d6779021f8.zip | |
Command line programming not default, enable by reading quickstart and comments in Vagrantfile
Diffstat (limited to 'Vagrantfile')
| -rw-r--r-- | Vagrantfile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Vagrantfile b/Vagrantfile index 4544386d0..1abe8ff3b 100644 --- a/Vagrantfile +++ b/Vagrantfile | |||
| @@ -30,13 +30,15 @@ Vagrant.configure(2) do |config| | |||
| 30 | config.vm.provider "virtualbox" do |vb| | 30 | config.vm.provider "virtualbox" do |vb| |
| 31 | # Hide the VirtualBox GUI when booting the machine | 31 | # Hide the VirtualBox GUI when booting the machine |
| 32 | vb.gui = false | 32 | vb.gui = false |
| 33 | vb.customize ['modifyvm', :id, '--usb', 'on'] | 33 | # Uncomment the below lines if you want to program |
| 34 | vb.customize ['usbfilter', 'add', '0', | 34 | # your Teensy via the VM rather than your host OS |
| 35 | '--target', :id, | 35 | #vb.customize ['modifyvm', :id, '--usb', 'on'] |
| 36 | '--name', 'teensy', | 36 | #vb.customize ['usbfilter', 'add', '0', |
| 37 | '--vendorid', '0x16c0', | 37 | # '--target', :id, |
| 38 | '--productid','0x0478' | 38 | # '--name', 'teensy', |
| 39 | ] | 39 | # '--vendorid', '0x16c0', |
| 40 | # '--productid','0x0478' | ||
| 41 | # ] | ||
| 40 | # Customize the amount of memory on the VM: | 42 | # Customize the amount of memory on the VM: |
| 41 | vb.memory = "512" | 43 | vb.memory = "512" |
| 42 | end | 44 | end |
