diff options
author | Serge Schneider <[email protected]> | 2019-06-07 15:51:06 +0100 |
---|---|---|
committer | Serge Schneider <[email protected]> | 2019-06-07 15:54:22 +0100 |
commit | 0308e92705bc9a22b7574ab5acaa7623e9050b8f (patch) | |
tree | 5ae9b0da0250133be942d199be79a13f44b336fe /export-noobs | |
parent | 22c8878f5d9680ccc0d848487963345c71e31a43 (diff) |
export-image: Set /boot size to 256MB
Diffstat (limited to 'export-noobs')
-rwxr-xr-x | export-noobs/00-release/00-run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/export-noobs/00-release/00-run.sh b/export-noobs/00-release/00-run.sh index 85ee454..b5f1272 100755 --- a/export-noobs/00-release/00-run.sh +++ b/export-noobs/00-release/00-run.sh @@ -16,7 +16,7 @@ ROOT_SIZE="$(xz --robot -l "${NOOBS_DIR}/root.tar.xz" | grep totals | cut -f 5) BOOT_SIZE="$(( BOOT_SIZE / 1024 / 1024 + 1))" ROOT_SIZE="$(( ROOT_SIZE / 1024 / 1024 + 1))" -BOOT_NOM="$(( BOOT_SIZE * 3 ))" +BOOT_NOM="256" ROOT_NOM="$(( ROOT_SIZE + 400 ))" mv "${NOOBS_DIR}/OS.png" "${NOOBS_DIR}/${NOOBS_NAME// /_}.png" |