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 25c4267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boot-qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ 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,
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.
Expand Down

0 comments on commit 25c4267

Please sign in to comment.