Skip to content

Commit

Permalink
qemu: disable ACPI
Browse files Browse the repository at this point in the history
Fixes Github issue astro#171
  • Loading branch information
astro committed Dec 28, 2023
1 parent 17e7f06 commit c39a472
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/runners/qemu.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ let
"pit=off"
"pic=off"
"mem-merge=on"
"acpi=on"
# ACPI breaks boot with 2GB mem
"acpi=off"
"pcie=${if requirePci then "on" else "off"}"
"usb=${if requireUsb then "on" else "off"}"
];
Expand Down

0 comments on commit c39a472

Please sign in to comment.