From 63e6fd4bb50d5cce467b935bf7c1cc0566d23c34 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sat, 20 Aug 2022 19:57:10 -0400 Subject: [PATCH] Add run-vb task --- Rsconscript | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rsconscript b/Rsconscript index c0afa23..a2bee71 100644 --- a/Rsconscript +++ b/Rsconscript @@ -144,3 +144,7 @@ task "run", desc: "Run HOS in QEMU" do sh %W[qemu-system-x86_64 -bios OVMF.fd -drive file=#{tmpdir}/HOS.img,format=raw -device qemu-xhci -device usb-tablet] end end + +task "run-vb", desc: "Run HOS in VirtualBox" do + sh %W[VBoxManage startvm HOS] +end