diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2024-01-16 19:31:50 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2024-01-16 19:31:50 +0100 |
commit | 1b9b643cfc1de35f5dbd30087745ab24aeec6996 (patch) | |
tree | 0eebc3d9df2a925f67279e65afd18f79b7053a9b | |
parent | 8f54eba190e1699418a536ac055fe36b4c44ccd8 (diff) |
fix uefi boot order: primary before fallback
-rwxr-xr-x | mkcryptuefi | 2 | ||||
-rwxr-xr-x | mkuefi | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mkcryptuefi b/mkcryptuefi index f60186b..8f7c091 100755 --- a/mkcryptuefi +++ b/mkcryptuefi @@ -59,8 +59,8 @@ pacman -Rns --noconfirm fakeroot mkinitcpio -p linux-hardened -efibootmgr --create --disk ${DRIVE} --part 1 --label "Artix Linux" --loader '\EFI\artix\artix-linux-hardened.efi' --unicode efibootmgr --create --disk ${DRIVE} --part 1 --label "Artix Linux (fallback initramfs)" --loader '\EFI\artix\artix-linux-hardened-fallback.efi' --unicode +efibootmgr --create --disk ${DRIVE} --part 1 --label "Artix Linux" --loader '\EFI\artix\artix-linux-hardened.efi' --unicode echo -en 'artix\nartix' | passwd @@ -56,8 +56,8 @@ pacman -Rns --noconfirm fakeroot mkinitcpio -p linux -efibootmgr --create --disk ${DRIVE} --part 1 --label "Artix Linux" --loader '\EFI\artix\artix-linux.efi' --unicode efibootmgr --create --disk ${DRIVE} --part 1 --label "Artix Linux (fallback initramfs)" --loader '\EFI\artix\artix-linux-fallback.efi' --unicode +efibootmgr --create --disk ${DRIVE} --part 1 --label "Artix Linux" --loader '\EFI\artix\artix-linux.efi' --unicode echo -en 'artix\nartix' | passwd |