From 3df2dd092275527bcabdf2c7b2267322b0773d0d Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 21 Mar 2025 10:24:05 +0000 Subject: [PATCH] Attempt to mount the boot partition by number instead of by label --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index bdaf4e8..2fd6892 100644 --- a/install.sh +++ b/install.sh @@ -28,7 +28,7 @@ mkfs.fat -F 32 -n BOOT ${DISK}2 # Mount the partitions 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