From ad3ab51ffea1f4181c89148be7aadeb800aa3b35 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 21 Mar 2025 10:19:38 +0000 Subject: [PATCH] Renamed boot partition to be upper case --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 433eb6c..bdaf4e8 100644 --- a/install.sh +++ b/install.sh @@ -24,11 +24,11 @@ mkfs.ext4 /dev/mapper/root mount /dev/mapper/root /mnt # Format -mkfs.fat -F 32 -n boot ${DISK}2 +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/disk/by-label/BOOT /mnt/boot # Clone the configuration repository