OSDN Git Service

mkuserimg.sh: set default size according to the $SRC_DIR size
authorChih-Wei Huang <cwhuang@linux.org.tw>
Tue, 8 Mar 2016 09:14:34 +0000 (17:14 +0800)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Fri, 15 Jun 2018 08:37:57 +0000 (16:37 +0800)
Add extra size by the $SRC_DIR size plus 10%.

ext4_utils/mkuserimg.sh

index 06c68d4..d33348c 100755 (executable)
@@ -119,6 +119,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=""