summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorDamien Walsh <me@damow.net>2013-05-31 02:14:33 +0100
committerDamien Walsh <me@damow.net>2013-05-31 02:14:33 +0100
commit6aa84eff7dae24f77ed0a820c6dca42266bf8d93 (patch)
tree465189abf1af5cee68d9ef8400949b7ebb75d667 /Vagrantfile
parente4d9765a8d9527e7703407039aed246be1206af4 (diff)
Basic ALSA sound output support.feat/sound
* Host platform specific right now - see Vagrantfile.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index ef51993..820adc4 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -8,6 +8,13 @@ Vagrant.configure('2') do |config|
config.vm.provider 'virtualbox' do |v|
v.customize ['modifyvm', :id, '--usb', 'on']
+
+ # Audio - Specific to Mac OS X
+ v.customize ['modifyvm', :id, '--audio', 'coreaudio']
+
+ # Audio - Specific to Linux
+ #v.customize ['modifyvm', :id, '--audio', 'oss']
+
v.customize ['modifyvm', :id, '--usbehci', 'on']
v.customize ['usbfilter', 'add', '0', '--target', :id, '--name', 'rtl2832u', '--vendorid', '0x0bda']
end