diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2023-08-13 14:11:19 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2023-08-13 14:12:02 +0200 |
commit | 8b99befad597c1adeb1ec99a543eac0553c422af (patch) | |
tree | 0b27d107c1a4cd88309c0f34633a45102e92caae /scripts | |
parent | 41dc922f8e412f740cdea770e9fe9c4ca0b568ab (diff) |
create.sh: use a 2GB disk and more inodes to build bigger projects natively
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/create.sh b/scripts/create.sh index 1d0c467d0..3b62f04ee 100755 --- a/scripts/create.sh +++ b/scripts/create.sh @@ -2,7 +2,7 @@ #- # Copyright © 2010, 2011, 2012 # Thorsten Glaser <tg@mirbsd.org> -# Copyright © 2010-2014 +# Copyright © 2010-2023 # Waldemar Brodkorb <wbx@openadk.org> # # Provided that these terms and disclaimer and all copyright notices @@ -56,7 +56,7 @@ Syntax: $me [-c cfgfssize] [+g] [-i imagesize] [-p panictime] Explanation/Defaults: -c: minimum 0, maximum 5, default 1 (MiB) -g: enable installing GNU GRUB 2 - -i: total image, default 512 (MiB; max. approx. 2 TiB) + -i: total image, default 2048 (MiB; max. approx. 2 TiB) -p: default 10 (seconds; 0 disables; max. 300) -s: default 115200 (bps, others: 9600 19200 38400 57600) -t: enable serial console (+t disables it, default) @@ -67,7 +67,7 @@ EOF cfgfs=1 usegrub=0 -tgtmib=512 +tgtmib=2048 panicreboot=10 speed=115200 serial=0 @@ -275,7 +275,7 @@ fi print "Creating ext2fs filesystem image..." cd "$T" f=0 -genext2fs -U -N 32768 -b $((partfssz)) -d src fsimg || f=1 +genext2fs -U -N 65536 -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") |