Revert "Extend partitions to reserve some free space"
This reverts commitd907aaac3b
. This reverts commit3b5b11f9e5
.
This commit is contained in:
parent
d907aaac3b
commit
73261d6ef5
1 changed files with 1 additions and 2 deletions
3
mkimg.sh
3
mkimg.sh
|
@ -27,9 +27,8 @@ TOTAL_SIZE=$(du --apparent-size -s "$ROOTFS_DIR" --block-size=1 | cut -f 1)
|
|||
|
||||
ROOT_SIZE=$((TOTAL_SIZE - BOOT_SIZE))
|
||||
|
||||
# Extend to reserve some free space.
|
||||
BOOT_SIZE=$((BOOT_SIZE * 2))
|
||||
ROOT_SIZE=$((ROOT_SIZE + 8 * 1024 * 1024 * 1024))
|
||||
ROOT_SIZE=$((ROOT_SIZE + 800 * 1024 * 1024))
|
||||
|
||||
BLOCK_SIZE=512
|
||||
|
||||
|
|
Reference in a new issue