|
| 1 | +# -*- mode: ruby -*- |
| 2 | +# vi: set ft=ruby : |
| 3 | + |
| 4 | +Vagrant.configure(2) do |config| |
| 5 | + # The most common configuration options are documented and commented below. |
| 6 | + # For a complete reference, please see the online documentation at |
| 7 | + # https://docs.vagrantup.com. |
| 8 | + |
| 9 | + # Every Vagrant development environment requires a box. You can search for |
| 10 | + # boxes at https://atlas.hashicorp.com/search. |
| 11 | + config.vm.box = "ubuntu/trusty64" |
| 12 | + |
| 13 | + # Disable automatic box update checking. If you disable this, then |
| 14 | + # boxes will only be checked for updates when the user runs |
| 15 | + # `vagrant box outdated`. This is not recommended. |
| 16 | + # config.vm.box_check_update = false |
| 17 | + |
| 18 | + # Create a forwarded port mapping which allows access to a specific port |
| 19 | + # within the machine from a port on the host machine. In the example below, |
| 20 | + # accessing "localhost:8080" will access port 80 on the guest machine. |
| 21 | + # config.vm.network "forwarded_port", guest: 80, host: 8080 |
| 22 | + |
| 23 | + # Create a private network, which allows host-only access to the machine |
| 24 | + # using a specific IP. |
| 25 | + # config.vm.network "private_network", ip: "192.168.33.10" |
| 26 | + |
| 27 | + # Create a public network, which generally matched to bridged network. |
| 28 | + # Bridged networks make the machine appear as another physical device on |
| 29 | + # your network. |
| 30 | + # config.vm.network "public_network" |
| 31 | + |
| 32 | + # Share an additional folder to the guest VM. The first argument is |
| 33 | + # the path on the host to the actual folder. The second argument is |
| 34 | + # the path on the guest to mount the folder. And the optional third |
| 35 | + # argument is a set of non-required options. |
| 36 | + # config.vm.synced_folder "../data", "/vagrant_data" |
| 37 | + |
| 38 | + # Provider-specific configuration so you can fine-tune various |
| 39 | + # backing providers for Vagrant. These expose provider-specific options. |
| 40 | + # Example for VirtualBox: |
| 41 | + # |
| 42 | + config.vm.provider "virtualbox" do |vb| |
| 43 | + # Display the VirtualBox GUI when booting the machine |
| 44 | + # vb.gui = true |
| 45 | + |
| 46 | + # Customize the amount of memory on the VM: |
| 47 | + vb.memory = "2048" |
| 48 | + |
| 49 | + # Use 2 CPUs |
| 50 | + vb.cpus = 2 |
| 51 | + |
| 52 | + # Enable all USB devices needed for development |
| 53 | + vb.customize ['modifyvm', :id, '--usb', 'on'] |
| 54 | + vb.customize ['modifyvm', :id, '--usbehci', 'on'] |
| 55 | + vb.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'STLink', '--vendorid', '0x0483', '--productid', '0x3748'] |
| 56 | + vb.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'Olimex OpenOCD JTAG ARM-USB-OCD-H', '--vendorid', '0x15BA', '--productid', '0x002b'] |
| 57 | + vb.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'AVRISP mkII', '--vendorid', '0x03EB', '--productid', '0x2104'] |
| 58 | + end |
| 59 | + |
| 60 | + # Enable provisioning with a shell script. Additional provisioners such as |
| 61 | + # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the |
| 62 | + # documentation for more information about their specific syntax and use. |
| 63 | + config.vm.provision :shell, path: "bootstrap.sh" |
| 64 | +end |
0 commit comments