feat: ✨ add an option to stop creating efi boot entries
This commit is contained in:
parent
782be942eb
commit
8a27b4e196
@ -12,6 +12,9 @@ function config -d "sets some configuration variables"
|
||||
# images.
|
||||
set -g CFG_DEFAULT_SUBVOL "@"
|
||||
|
||||
# Wheter to add a new EFI entry for a new snapshot uki
|
||||
set -g CFG_EFI "yes"
|
||||
|
||||
# The device the EFI partition resides on
|
||||
set -g CFG_EFI_DEV "/dev/nvme0n1"
|
||||
|
||||
|
@ -138,8 +138,10 @@ function main
|
||||
cp "$CFG_BUILD_DIR/$id/arch-linux-$id.efi" "$CFG_UKI_DIR"
|
||||
echo " -> copied uki for snapshot $id into uki directory"
|
||||
|
||||
add_efi_entry $id
|
||||
echo " -> created efi boot entry for uki of snapshot $id"
|
||||
if test "$CFG_EFI" = "yes"
|
||||
add_efi_entry $id
|
||||
echo " -> created efi boot entry for uki of snapshot $id"
|
||||
end
|
||||
end
|
||||
|
||||
case "current"
|
||||
|
Loading…
Reference in New Issue
Block a user