]> git.ipfire.org Git - people/ms/bricklayer.git/commitdiff
master: Shorten partition label
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 19 Nov 2022 11:48:36 +0000 (11:48 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 19 Nov 2022 11:48:36 +0000 (11:48 +0000)
The partition label for the EFI partition can only contain up to 11
characters and has therefore been shortened.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/bricklayer-master

index a90eab81bd2e6fdb612a2036032dd12e03786b7b..5ffd3cef29cdcf94335bab97fd6bdeef5f9f0cf4 100644 (file)
@@ -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