haiku/3rdparty/vagrant/libvirt/Vagrantfile
Alexander von Gluck IV 9e25244c5e 3rdparty/vagrant: Add our vagrant templates
* I have to figure out how to do this every major
  release, put here to document somewhat.
* The os images are empty files for obvious reasons
* This vagrant box is used by qemu for their automated
  testing under Haiku
  https://github.com/qemu/qemu/blob/master/tests/vm/haiku.x86_64

Change-Id: I8e02104063284a96e1672051e3d504a78a64cfe3
2022-02-16 12:09:06 -06:00

13 lines
332 B
Ruby

Vagrant.configure("2") do |config|
config.vm.provider :libvirt do |libvirt|
libvirt.driver = "kvm"
libvirt.host = ""
libvirt.memory = 1024
libvirt.cpus = 2
libvirt.input :type => "tablet", :bus => "usb"
libvirt.video_type = "qxl"
libvirt.graphics_type = "spice"
libvirt.machine_arch = "x86_64"
end
end