From: Daan De Meyer Date: Tue, 22 Aug 2023 09:13:12 +0000 (+0200) Subject: Fix bootloader path X-Git-Tag: v16~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aff069b5a2c3eec676f436129944fa8b323df0d9;p=thirdparty%2Fmkosi.git Fix bootloader path --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index 22e53af1b..ff96362fc 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -1654,7 +1654,7 @@ def make_image(state: MkosiState, skip: Sequence[str] = [], split: bool = False) definitions = state.workspace / "repart-definitions" if not definitions.exists(): definitions.mkdir() - bootloader = state.root / f"efi/EFI/BOOT/BOOT{state.config.architecture.to_efi()}.EFI" + bootloader = state.root / f"efi/EFI/BOOT/BOOT{state.config.architecture.to_efi().upper()}.EFI" # If grub for BIOS is installed, let's add a BIOS boot partition onto which we can install grub. bios = (state.config.bootable != ConfigFeature.disabled and want_grub_bios(state))