aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenzo Castelli <lcastelli@gmail.com>2022-09-10 21:01:10 +0000
committerLorenzo Castelli <lcastelli@gmail.com>2022-09-10 15:01:53 -0700
commit0c2d4f01d57ccd2356fe8eaa10329d61c266471a (patch)
tree919b88157a344cd6dfb3c27aa56b2325a43ce4ab
parent97f7bbf31acc2d55b72e5aa934dce2d531085588 (diff)
downloadcompute-archlinux-image-builder-0c2d4f01d57ccd2356fe8eaa10329d61c266471a.tar.xz
Turns the VFAT boot label uppercase, according to VFAT best practices.
-rwxr-xr-xbuild-arch-gce2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-arch-gce b/build-arch-gce
index 935da51..0103378 100755
--- a/build-arch-gce
+++ b/build-arch-gce
@@ -51,7 +51,7 @@ tune2fs -c 0 -i 0 -- "$root_dev"
echo '- Formatting the boot partition.'
boot_dev=${loop_dev}p1
-mkfs.vfat -F32 -n boot -- "$boot_dev"
+mkfs.vfat -F32 -n BOOT -- "$boot_dev"
echo '- Mounting the root partition.'
mount_dir=$work_dir/disk.mnt