volume name

This commit is contained in:
Matthew Kennedy 2023-02-28 16:42:14 -08:00
parent 66af5b08bb
commit 5e238e5d26
2 changed files with 4 additions and 4 deletions

View File

@ -25,10 +25,10 @@ rm -f $ZIP $IMAGE
# copy *FS_SIZE*KB of zeroes
dd if=/dev/zero of=$IMAGE bs=1024 count=$FS_SIZE
# create a FAT filesystem inside, name it RUSEFI
# create a FAT filesystem inside, name it "FOME EFI"
mkfs.fat -v -r 64 $IMAGE
# labels can be no longer than 11 characters
fatlabel $IMAGE RUSEFI
fatlabel $IMAGE "FOME EFI"
# -j option dumps all files in the root of the zip (instead of inside directories)
zip -j $ZIP $FULL_INI

View File

@ -24,10 +24,10 @@ rm -f $IMAGE $IMAGE.gz
# copy *FS_SIZE*KB of zeroes
dd if=/dev/zero of=$IMAGE bs=1024 count=$FS_SIZE
# create a FAT filesystem inside, name it RUSEFI
# create a FAT filesystem inside, name it "FOME EFI"
mkfs.fat $IMAGE
# labels can be no longer than 11 characters
fatlabel $IMAGE RUSEFI
fatlabel $IMAGE "FOME EFI"