Skip to content

Commit 1a96365

Browse files
committed
boot-qemu.py: Fix '--efi' for x86_64
Pretty obvious typo... Signed-off-by: Nathan Chancellor <nathan@kernel.org>
1 parent be51dc1 commit 1a96365

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

boot-qemu.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -699,8 +699,8 @@ def run(self):
699699
Path('OVMF/OVMF_VARS.fd'), # Debian and Ubuntu
700700
]
701701
ovmf_vars = utils.find_first_file(usr_share, ovmf_vars_locations)
702-
self._efi_vars = Path(utils.BOOT_UTILS, 'images', self.initrd_arch,
703-
ovmf_vars.name)
702+
self._efi_vars = Path(utils.BOOT_UTILS, 'images',
703+
self._initrd_arch, ovmf_vars.name)
704704
# This file is in /usr/share, so it must be copied in order to be
705705
# modified.
706706
shutil.copyfile(ovmf_vars, self._efi_vars)

0 commit comments

Comments
 (0)