diff --git a/firmware/hw_layer/mass_storage/create_ini_image.sh b/firmware/hw_layer/mass_storage/create_ini_image.sh index 359aaa093f..0e84f8b8ab 100755 --- a/firmware/hw_layer/mass_storage/create_ini_image.sh +++ b/firmware/hw_layer/mass_storage/create_ini_image.sh @@ -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 diff --git a/firmware/hw_layer/mass_storage/create_ini_image_compressed.sh b/firmware/hw_layer/mass_storage/create_ini_image_compressed.sh index 08d71ea68d..7fc68cf774 100755 --- a/firmware/hw_layer/mass_storage/create_ini_image_compressed.sh +++ b/firmware/hw_layer/mass_storage/create_ini_image_compressed.sh @@ -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"