From bdf88d997546dd309a3dc98857320121ed96f326 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 19 Nov 2022 11:48:36 +0000 Subject: [PATCH] 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 --- src/bricklayer-master | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3