aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bootstrap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index cbd10a3..dbc49a9 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -88,8 +88,11 @@ fi
# 8. optional: create an Arch EFI boot entry if none exists
if [ -d /sys/firmware/efi ]; then
if ! sudo efibootmgr 2>/dev/null | grep -iq arch; then
- log 'no Arch Linux EFI boot entry found; launching create-efi'
- "$HOME/.local/bin/create-efi"
+ warn 'no Arch Linux EFI boot entry found'
+ warn 'after first kernel install, run: sudo mkinitcpio -P'
+ warn 'then register the UKI with efibootmgr, for example:'
+ warn " sudo efibootmgr --create --disk /dev/nvme0n1 --part 1 \\"
+ warn " --label 'Arch UKI' --loader '\\EFI\\Linux\\arch-linux.efi'"
fi
fi