Enhance default boot partition size for installer

This will prevent running into "No space left on device" pretty soon.
This commit is contained in:
Igor
2023-09-19 08:25:23 +02:00
parent 39ee6545d9
commit 95dc76ae87

View File

@@ -572,7 +572,7 @@ format_emmc()
fi
# default boot partition size, in MiB
DEFAULT_BOOTSIZE=256
DEFAULT_BOOTSIZE=512
# (convert to sectors for partitioning)
DEFAULT_BOOTSIZE_SECTORS=$(((${DEFAULT_BOOTSIZE} * 1024 * 1024) / 512))