diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2013-11-10 18:28:42 +0100 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2013-11-10 18:28:42 +0100 |
commit | 8a5dfbe8cd722a8c8e8b8504bb016961f4e658ad (patch) | |
tree | ad9365be2b12e1b60a0578c8ac777dfbcc5777ff /scripts | |
parent | 14b79594384d385bcbbf6f3497a41fc964a065b7 (diff) |
16384 is not enough for my use case
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create.sh b/scripts/create.sh index 08800f0aa..058942314 100755 --- a/scripts/create.sh +++ b/scripts/create.sh @@ -297,7 +297,7 @@ fi print "Creating ext2fs filesystem image..." cd "$T" f=0 -genext2fs -U -N 16384 -b $((partfssz)) -d src fsimg || f=1 +genext2fs -U -N 32768 -b $((partfssz)) -d src fsimg || f=1 if (( !f )); then # use bc(1): this may be over the shell’s 32-bit arithmetics wantsz=$($bc <<<"$((partfssz))*1024") |