Automatically enforcing fat32 on usb-hdd when detecting files bigger than 2GB.

This commit is contained in:
Daniel Baumann 2008-09-11 09:16:58 +02:00
parent dbb7a3d459
commit 759d82a2c4
1 changed files with 9 additions and 0 deletions

View File

@ -89,6 +89,15 @@ then
rm -f binary.img
fi
# Enforce fat32 if we find individual files bigger than 2GB
if [ "${LH_BINARY_FILESYSTEM}" = "fat16" ] && [ -n "$(find binary -size +1999M)" ]
then
Echo_warning "FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32."
LH_BINARY_FILESYSTEM="fat32"
export LH_BINARY_FILESYSTEM
fi
# Everything which comes here needs to be cleaned up,
DU_DIM="$(du -ms binary | cut -f1)"
REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LH_BINARY_FILESYSTEM})"