Edit Note: Arch UEFI
All checks were successful
部署文档 / build (push) Successful in 1m35s

- reword some repeats
This commit is contained in:
2025-10-02 21:44:26 +08:00
parent 0d1de50594
commit 676783aa81

View File

@@ -208,7 +208,7 @@ PRESETS=('default')
default_uki="/efi/EFI/BOOT/bootx64.efi"
default_options="--splash /usr/share/systemd/bootctl/splash-arch.bmp"
```
本身 UKI 默认是丢到`esp\EFI\Linux\arch-linux*.efi`里的相对来说已经比较通用Grub 可以直接读,据说`systemd-boot`也可以扫描到,也可以直接刷进 NVRAM)。但我尝试 UKI 本就是为了摒弃前面两种方案,殊途同归反倒不值得这么整了。所以我个人选择直接让 UEFI 固件直接加载回退路径启动项。
本身 UKI 默认是丢到`esp\EFI\Linux\arch-linux*.efi`里的相对来说已经比较通用Grub 可以直接读,也可以用作原生启动项)。但我尝试 UKI 本就是为了摒弃前面两种方案,殊途同归反倒不值得这么整了。所以我个人选择让 UEFI 固件直接加载回退路径启动项。
### iii. 创建映像
按需建立路径,并跑一遍生成:
@@ -216,7 +216,7 @@ default_options="--splash /usr/share/systemd/bootctl/splash-arch.bmp"
mkdir -p /efi/EFI/BOOT/
mkinitcpio -p linux
```
如有必要,清理系统中废旧的启动文件(Grub、……),并用`efibootmgr`手动清理遗留的原生启动项。
如有必要,清理系统中废旧的启动文件(`grubx64.efi``refind_x64.efi`),并用`efibootmgr`手动清理遗留的原生启动项。
---