diff options
author | Liav A <liavalb@gmail.com> | 2022-09-16 13:19:36 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-09-20 19:05:13 +0100 |
commit | a40f289ee5512b70cd9633b3f0f07bcfdcdb0f8f (patch) | |
tree | 66bd2c6da2fc34011fca046d0faae695ab8d5927 /Meta | |
parent | 252c92d565120eeaa1a5dd4b52c006120afdde09 (diff) | |
download | serenity-a40f289ee5512b70cd9633b3f0f07bcfdcdb0f8f.zip |
Meta: Add isa-vga device to ISA-PC and microvm machine types
With this device being added, we can now boot into graphics mode on
these platforms too. For ISA-PC machine this is basically the only
viable option to use, but in the future, we should remove this device
for the microvm machine type as it should allow us to determine better
options and detect them by using a given device tree blob.
Diffstat (limited to 'Meta')
-rwxr-xr-x | Meta/run.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Meta/run.sh b/Meta/run.sh index 4d40ab10b0..4f49a778cd 100755 --- a/Meta/run.sh +++ b/Meta/run.sh @@ -323,6 +323,7 @@ $SERENITY_EXTRA_QEMU_ARGS -cpu pentium3 -machine isapc -d guest_errors +-device isa-vga -chardev stdio,id=stdout,mux=on -device isa-debugcon,chardev=stdout $SERENITY_BOOT_DRIVE @@ -336,7 +337,7 @@ $SERENITY_EXTRA_QEMU_ARGS -d guest_errors -chardev stdio,id=stdout,mux=on -device isa-debugcon,chardev=stdout --device isa-cirrus-vga +-device isa-vga -device isa-ide $SERENITY_BOOT_DRIVE -device i8042 |