diff options
author | Liav A <liavalb@gmail.com> | 2021-08-06 13:33:43 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-07 11:49:07 +0200 |
commit | 02c72de09000be101b13e0df92216114c5c65284 (patch) | |
tree | 67ea9c53d472e40c3e49689750317f24f566e02d /Meta/run.sh | |
parent | 08891e82a57e801bf5f9defb40b94cbf76a675a6 (diff) | |
download | serenity-02c72de09000be101b13e0df92216114c5c65284.zip |
Meta: Remove legacy hardware components from Q35 machine
As this is a test machine I use personally to test "modern" hardware
setups, it feels quite comfortable to not care too much about VGA with
this type of machine.
Also, we don't actively use the IDE controller on this machine type, so
let's just remove it :^)
Diffstat (limited to 'Meta/run.sh')
-rwxr-xr-x | Meta/run.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Meta/run.sh b/Meta/run.sh index f0f7784956..0d8175797c 100755 --- a/Meta/run.sh +++ b/Meta/run.sh @@ -219,7 +219,8 @@ $SERENITY_EXTRA_QEMU_ARGS -machine q35 -d guest_errors -smp 2 --device secondary-vga +-vga none +-device bochs-display -device ich9-usb-ehci1,bus=pcie.0,multifunction=on,addr=0x5.0x0 -device ich9-usb-ehci2,bus=pcie.0,addr=0x5.0x2 -device ich9-usb-uhci1,bus=pcie.0,multifunction=on,addr=0x7.0x0 @@ -242,8 +243,6 @@ $SERENITY_EXTRA_QEMU_ARGS -device pci-bridge,chassis_nr=1,id=bridge1,bus=pcie.4,addr=0x3.0x0 -device sdhci-pci,bus=bridge1,addr=0x1.0x0 -display $SERENITY_QEMU_DISPLAY_BACKEND --device $SERENITY_QEMU_DISPLAY_DEVICE --device piix3-ide -drive file=${SERENITY_DISK_IMAGE},format=raw,id=disk,if=none -device ahci,id=ahci -device ide-hd,bus=ahci.0,drive=disk,unit=0 @@ -254,7 +253,6 @@ $SERENITY_EXTRA_QEMU_ARGS -device virtio-rng-pci $SERENITY_AUDIO_BACKEND $SERENITY_AUDIO_HW --device sb16 " export SDL_VIDEO_X11_DGAMOUSE=0 |