diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-04-27 01:28:35 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-11 15:10:32 +0200 |
commit | 21c1f88095a87e8b436738bda39e1f39f76dceff (patch) | |
tree | c66a950976652d162a4d40e80c18428a254cc4b1 | |
parent | 107a33adf8518a8e8437b530fbac8d5a67e3a886 (diff) |
create.sh: default to 512M, it is just faster for most usecases
-rwxr-xr-x | scripts/create.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/create.sh b/scripts/create.sh index cee6b5bcb..cc0099b4d 100755 --- a/scripts/create.sh +++ b/scripts/create.sh @@ -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 2048 (MiB; max. approx. 2 TiB) + -i: total image, default 512 (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=2048 +tgtmib=512 panicreboot=10 speed=115200 serial=0 |