Simplyfing partition size check when enforcing fat32.

This commit is contained in:
Daniel Baumann 2008-09-11 09:25:20 +02:00
parent 107125bae8
commit 30b0d0a5f3
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ then
fi
# Enforce fat32 if we have images in total bigger than 2GB
if [ "${LH_BINARY_FILESYSTEM}" = "fat16" ] && [ "$(cd binary && du -s | awk '{ print $1 }')" -gt "1900000" ]
if [ "${LH_BINARY_FILESYSTEM}" = "fat16" ] && [ "$(du -s binary | awk '{ print $1 }')" -gt "1900000" ]
then
Echo_warning "FAT16 doesn't support partitions larger than 2GB, automatically enforcing FAT32"