mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
tests/vm: do not specify -bios option
When running from the build tree, the executable is able to find the BIOS on its own; when running from the source tree, a firmware blob should already be installed and there is no guarantee that the one in the source tree works with the QEMU that is being used for the installation. Just remove the -bios option, since it is unnecessary and in fact there are other x86 VM tests that do not bother specifying it. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
@@ -79,7 +79,6 @@ class FedoraVM(basevm.BaseVM):
|
||||
self.exec_qemu_img("create", "-f", "qcow2", img_tmp, self.size)
|
||||
self.print_step("Booting installer")
|
||||
self.boot(img_tmp, extra_args = [
|
||||
"-bios", "pc-bios/bios-256k.bin",
|
||||
"-machine", "graphics=off",
|
||||
"-device", "VGA",
|
||||
"-cdrom", iso
|
||||
|
||||
@@ -95,7 +95,6 @@ class FreeBSDVM(basevm.BaseVM):
|
||||
|
||||
self.print_step("Booting installer")
|
||||
self.boot(img_tmp, extra_args = [
|
||||
"-bios", "pc-bios/bios-256k.bin",
|
||||
"-machine", "graphics=off",
|
||||
"-device", "VGA",
|
||||
"-cdrom", iso
|
||||
|
||||
@@ -86,7 +86,6 @@ class NetBSDVM(basevm.BaseVM):
|
||||
|
||||
self.print_step("Booting installer")
|
||||
self.boot(img_tmp, extra_args = [
|
||||
"-bios", "pc-bios/bios-256k.bin",
|
||||
"-machine", "graphics=off",
|
||||
"-cdrom", iso
|
||||
])
|
||||
|
||||
@@ -82,7 +82,6 @@ class OpenBSDVM(basevm.BaseVM):
|
||||
|
||||
self.print_step("Booting installer")
|
||||
self.boot(img_tmp, extra_args = [
|
||||
"-bios", "pc-bios/bios-256k.bin",
|
||||
"-machine", "graphics=off",
|
||||
"-device", "VGA",
|
||||
"-cdrom", iso
|
||||
|
||||
Reference in New Issue
Block a user