From cfaf991c6b73b7387ae9cfdbf0e6b3728599a997 Mon Sep 17 00:00:00 2001 From: Martin Lisowski Date: Tue, 14 Jan 2025 16:36:07 +0100 Subject: [PATCH] Fix VirtualBox --storagectl argument AHCI to SATA in build.c --- util/build.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/build.c b/util/build.c index 44b4d6b..9a13bfb 100644 --- a/util/build.c +++ b/util/build.c @@ -653,7 +653,7 @@ void Run(int emulator, int log, int debug) { case EMULATOR_VIRTUALBOX: { // TODO Automatically setup the Essence VM if it doesn't exist. - CallSystem("VBoxManage storageattach Essence --storagectl AHCI --port 0 --device 0 --type hdd --medium none"); + CallSystem("VBoxManage storageattach Essence --storagectl SATA --port 0 --device 0 --type hdd --medium none"); CallSystem("VBoxManage closemedium disk bin/vbox.vdi --delete"); if (IsOptionEnabled("Emulator.VBoxEFI")) { @@ -665,7 +665,7 @@ void Run(int emulator, int log, int debug) { CallSystem("VBoxManage modifyvm Essence --firmware bios"); } - CallSystem("VBoxManage storageattach Essence --storagectl AHCI --port 0 --device 0 --type hdd --medium bin/vbox.vdi"); + CallSystem("VBoxManage storageattach Essence --storagectl SATA --port 0 --device 0 --type hdd --medium bin/vbox.vdi"); CallSystem("VBoxManage startvm --putenv VBOX_GUI_DBG_ENABLED=true Essence"); } break;