9e25244c5e
* 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
8 lines
170 B
Ruby
8 lines
170 B
Ruby
#
|
|
# Example Vagrantfile to launch a haiku image
|
|
#
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "haiku-os/r1beta3-x86_64"
|
|
config.vm.box_version = "20220216"
|
|
end
|