1
0

remove qemu vga adapter

it doesn't work with qemu 9.2 (coming soon) but we don't need it
anyway
This commit is contained in:
Daniel Barlow 2025-04-14 21:22:25 +01:00
parent f728b584a2
commit d749538e9e
2 changed files with 3 additions and 3 deletions

View File

@ -42,11 +42,11 @@
in
{
wan = link.build {
devpath = "/devices/pci0000:00/0000:00:13.0/virtio0";
devpath = "/devices/pci0000:00/0000:00:12.0/virtio0";
ifname = "wan";
};
lan = link.build {
devpath = "/devices/pci0000:00/0000:00:14.0/virtio1";
devpath = "/devices/pci0000:00/0000:00:13.0/virtio1";
ifname = "lan";
};

View File

@ -132,7 +132,7 @@
options.u-boot options.disk-image))
(appendm (access-net options.wan))
(appendm (local-net options.lan))
(appendm ["-display" "none"])))
(appendm ["-display" "none" "-vga" "none"])))
(each [n a (ipairs exec-args)]
(print (.. (if (> n 1) " " "") (string.format "%q" a))))