Mount NixOS EFI partition to /boot/efi
This commit is contained in:
parent
659b7e203f
commit
2904b481f0
2 changed files with 3 additions and 1 deletions
|
@ -8,6 +8,7 @@ OS_DISK="${OS_DISK}";
|
|||
BOOT_LABEL="${BOOT_LABEL:-Boot}";
|
||||
OS_LABEL="${OS_LABEL:-Linux}";
|
||||
SWAP_LABEL="${SWAP_LABEL:-Swap}";
|
||||
BOOT_MOUNTPOINT="${BOOT_MOUNTPOINT:-"/boot"}";
|
||||
SKIP_FORMAT_EFI="${SKIP_FORMAT_EFI}";
|
||||
PARTITION_SCRIPT="${PARTITION_SCRIPT:-"./default-partition.sh"}";
|
||||
memory="$(cat /proc/meminfo | awk -F " " '/^MemTotal/ { print $2 }')";
|
||||
|
@ -62,7 +63,7 @@ then
|
|||
bootDisk="/dev/disk/by-label/$BOOT_LABEL";
|
||||
fi
|
||||
|
||||
mount --mkdir "$bootDisk" "$OS_MOUNT_ROOT/boot";
|
||||
mount --mkdir "$bootDisk" "$OS_MOUNT_ROOT$BOOT_MOUNTPOINT";
|
||||
swapon "/dev/disk/by-label/$SWAP_LABEL";
|
||||
|
||||
if command -v extraMounts
|
||||
|
|
|
@ -10,6 +10,7 @@ OS_LABEL="${OS_LABEL:-NixOS}";
|
|||
OS_MOUNT_ROOT="${NIXOS_MOUNT_ROOT}" \
|
||||
OS_DISK="${NIXOS_DISK}" \
|
||||
OS_LABEL="${OS_LABEL}" \
|
||||
BOOT_MOUNTPOINT="/boot/efi" \
|
||||
. "../../Common/OS/partition.sh";
|
||||
|
||||
configRoot="$NIXOS_MOUNT_ROOT/etc/nixos";
|
||||
|
|
Loading…
Reference in a new issue