Uses Vagrant to install Xilinx Vivado into a VM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
334 B

  1. Vagrant.configure("2") do |config|
  2. config.vm.box = "hashicorp/bionic64"
  3. config.ssh.forward_x11 = true
  4. config.vm.provider 'virtualbox' do |v|
  5. v.customize ['modifyvm', :id, '--usb', 'on']
  6. v.customize ['modifyvm', :id, '--usbehci', 'on']
  7. v.memory = 2048
  8. v.cpus = 2
  9. end
  10. config.vm.provision :shell, path: "bootstrap.sh"
  11. end