Skip to content

Commit

Permalink
boot-qemu.py: Fix '--efi' for x86_64
Browse files Browse the repository at this point in the history
Pretty obvious typo...

Signed-off-by: Nathan Chancellor <[email protected]>
  • Loading branch information
nathanchance committed Apr 13, 2024
1 parent be51dc1 commit 1a96365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boot-qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,8 +699,8 @@ def run(self):
Path('OVMF/OVMF_VARS.fd'), # Debian and Ubuntu
]
ovmf_vars = utils.find_first_file(usr_share, ovmf_vars_locations)
self._efi_vars = Path(utils.BOOT_UTILS, 'images', self.initrd_arch,
ovmf_vars.name)
self._efi_vars = Path(utils.BOOT_UTILS, 'images',
self._initrd_arch, ovmf_vars.name)
# This file is in /usr/share, so it must be copied in order to be
# modified.
shutil.copyfile(ovmf_vars, self._efi_vars)
Expand Down

0 comments on commit 1a96365

Please sign in to comment.