Attempt to mount the boot partition by number instead of by label

This commit is contained in:
Luke Else 2025-03-21 10:24:05 +00:00
parent ad3ab51ffe
commit 3df2dd0922

View File

@ -28,7 +28,7 @@ mkfs.fat -F 32 -n BOOT ${DISK}2
# Mount the partitions # Mount the partitions
mkdir -p /mnt/boot mkdir -p /mnt/boot
mount -o umask=077 /dev/disk/by-label/BOOT /mnt/boot mount -o umask=077 /dev/sda2 /mnt/boot
# Clone the configuration repository # Clone the configuration repository