From 2a97c01e22bcc0770e108008c095096742981175 Mon Sep 17 00:00:00 2001 From: Ian Bobbitt Date: Fri, 21 Jun 2013 10:39:12 -0400 Subject: Adding support for hackrf --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Vagrantfile') diff --git a/Vagrantfile b/Vagrantfile index ef51993..5366668 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,9 +7,12 @@ Vagrant.configure('2') do |config| config.ssh.forward_x11 = true config.vm.provider 'virtualbox' do |v| + v.customize ['modifyvm', :id, '--cpus', 1] + v.customize ['modifyvm', :id, '--memory', 1024] v.customize ['modifyvm', :id, '--usb', 'on'] v.customize ['modifyvm', :id, '--usbehci', 'on'] v.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'rtl2832u', '--vendorid', '0x0bda'] + v.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'Great Scott Gadgets HackRF [0100]', '--vendorid', '0x1D50', '--product', '0x604B'] end config.vm.provision :chef_solo do |chef| -- cgit v1.3.1