From: Michael Tremer Date: Sat, 19 Nov 2022 11:48:36 +0000 (+0000) Subject: master: Shorten partition label X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdf88d997546dd309a3dc98857320121ed96f326;p=people%2Fms%2Fbricklayer.git master: Shorten partition label The partition label for the EFI partition can only contain up to 11 characters and has therefore been shortened. Signed-off-by: Michael Tremer --- diff --git a/src/bricklayer-master b/src/bricklayer-master index a90eab8..5ffd3ce 100644 --- a/src/bricklayer-master +++ b/src/bricklayer-master @@ -251,7 +251,7 @@ make_grub_efi_image() { fi # Format it with FAT - if ! mkdosfs -F 12 -n "BRICKLAYER_EFI" "${efiboot}"; then + if ! mkdosfs -F 12 -n "BRICKLAYER" "${efiboot}"; then echo "Could not format the EFI filesystem" >&2 rm -f "${efiboot}" return 1