1
0
Fork 0

Decrease reserved space

This commit is contained in:
Alex Kotov 2020-02-12 04:24:59 +05:00
parent d8228e94a7
commit 50aeb89ec1
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ ROOT_SIZE=$((TOTAL_SIZE - BOOT_SIZE))
# Extend to reserve some free space.
BOOT_SIZE=$((BOOT_SIZE * 2))
ROOT_SIZE=$((ROOT_SIZE + 10 * 1024 * 1024 * 1024))
ROOT_SIZE=$((ROOT_SIZE + 4 * 1024 * 1024 * 1024))
BLOCK_SIZE=512