mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 08:44:52 +02:00
Use recent OVMF firmware (stable-202305) and use flash drives to configure Qemu command line
This commit is contained in:
parent
29b4e89d21
commit
0a14a08d54
@ -2028,7 +2028,19 @@ class QemuVM(BaseNode):
|
|||||||
raise QemuError("bios image '{}' is not accessible".format(self._bios_image))
|
raise QemuError("bios image '{}' is not accessible".format(self._bios_image))
|
||||||
options.extend(["-bios", self._bios_image.replace(",", ",,")])
|
options.extend(["-bios", self._bios_image.replace(",", ",,")])
|
||||||
elif self._uefi:
|
elif self._uefi:
|
||||||
options.extend(["-bios", "OVMF.fd"]) # the OVMF bios image should be in the image directory
|
# get the OVMF firmware from the images directory
|
||||||
|
ovmf_firmware_path = self.manager.get_abs_image_path("OVMF_CODE.fd")
|
||||||
|
log.info("Configuring UEFI boot mode using OVMF file: '{}'".format(ovmf_firmware_path))
|
||||||
|
options.extend(["-drive", "if=pflash,format=raw,readonly,file={}".format(ovmf_firmware_path)])
|
||||||
|
|
||||||
|
# the node should have its own copy of OVMF_VARS.fd (the UEFI variables store)
|
||||||
|
ovmf_vars_node_path = os.path.join(self.working_dir, "OVMF_VARS.fd")
|
||||||
|
if not os.path.exists(ovmf_vars_node_path):
|
||||||
|
try:
|
||||||
|
shutil.copyfile(self.manager.get_abs_image_path("OVMF_VARS.fd"), ovmf_vars_node_path)
|
||||||
|
except OSError as e:
|
||||||
|
raise QemuError("Cannot copy OVMF_VARS.fd file to the node working directory: {}".format(e))
|
||||||
|
options.extend(["-drive", "if=pflash,format=raw,file={}".format(ovmf_vars_node_path)])
|
||||||
return options
|
return options
|
||||||
|
|
||||||
def _linux_boot_options(self):
|
def _linux_boot_options(self):
|
||||||
|
Binary file not shown.
BIN
gns3server/disks/OVMF_CODE.fd
Normal file
BIN
gns3server/disks/OVMF_CODE.fd
Normal file
Binary file not shown.
BIN
gns3server/disks/OVMF_VARS.fd
Normal file
BIN
gns3server/disks/OVMF_VARS.fd
Normal file
Binary file not shown.
@ -387,12 +387,22 @@ async def test_bios_option(vm, tmpdir, fake_qemu_img_binary):
|
|||||||
assert ' '.join(['-bios', str(tmpdir / "test.img")]) in ' '.join(options)
|
assert ' '.join(['-bios', str(tmpdir / "test.img")]) in ' '.join(options)
|
||||||
|
|
||||||
|
|
||||||
async def test_uefi_boot_mode_option(vm, tmpdir, fake_qemu_img_binary):
|
async def test_uefi_boot_mode_option(vm, tmpdir, images_dir, fake_qemu_img_binary):
|
||||||
|
|
||||||
vm.manager.get_qemu_version = AsyncioMagicMock(return_value="3.1.0")
|
vm.manager.get_qemu_version = AsyncioMagicMock(return_value="3.1.0")
|
||||||
vm._uefi = True
|
vm._uefi = True
|
||||||
|
|
||||||
|
# create fake OVMF files
|
||||||
|
ovmf_code_path = os.path.join(images_dir, "OVMF_CODE.fd")
|
||||||
|
with open(ovmf_code_path, "w+") as f:
|
||||||
|
f.write('1')
|
||||||
|
ovmf_vars_path = os.path.join(images_dir, "OVMF_VARS.fd")
|
||||||
|
with open(ovmf_vars_path, "w+") as f:
|
||||||
|
f.write('1')
|
||||||
|
|
||||||
options = await vm._build_command()
|
options = await vm._build_command()
|
||||||
assert ' '.join(['-bios', 'OVMF.fd']) in ' '.join(options)
|
assert ' '.join(["-drive", "if=pflash,format=raw,readonly,file={}".format(ovmf_code_path)]) in ' '.join(options)
|
||||||
|
assert ' '.join(["-drive", "if=pflash,format=raw,file={}".format(os.path.join(vm.working_dir, "OVMF_VARS.fd"))]) in ' '.join(options)
|
||||||
|
|
||||||
|
|
||||||
async def test_uefi_with_bios_image_already_configured(vm, tmpdir, fake_qemu_img_binary):
|
async def test_uefi_with_bios_image_already_configured(vm, tmpdir, fake_qemu_img_binary):
|
||||||
|
Loading…
Reference in New Issue
Block a user