OSDN Git Service

mkuserimg.sh: set default size according to the $SRC_DIR size
[android-x86/system-extras.git] / ext4_utils / mkuserimg.sh
index 08c75be..e76aa0a 100755 (executable)
@@ -107,6 +107,9 @@ fi
 if [ -z $SIZE ]; then
   echo "Need size of filesystem"
   exit 2
+elif [ 0 -eq 0$SIZE ]; then
+  s=$(du -sm $SRC_DIR | cut -f1)
+  SIZE=$(($s / 10 + $s))M
 fi
 
 OPT=""