image: bump /boot default size to 200MB

This commit is contained in:
InsanePrawn 2023-07-10 04:24:30 +02:00
parent f848474b08
commit bcf07f980e

View file

@ -23,7 +23,7 @@ from .cryptsetup import is_luks, get_luks_offset, luks_close, luks_open
MAPPER_DIR = '/dev/mapper/'
IMG_DEFAULT_SIZE_BOOT_MB = 90
IMG_DEFAULT_SIZE_BOOT_MB = 200
def dd_image(input: str, output: str, blocksize='1M') -> CompletedProcess: