installer: Increase size of /boot to 256 MiB

On some installations, we are running out of space on the /boot
partition due to growing sizes of the ramdisk and the kernel.

To accomodate for that and have room to grow in the future, we increase
the size of the partition to 256 MiB.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
This commit is contained in:
Michael Tremer
2022-08-07 12:00:55 +00:00
committed by Peter Müller
parent ca119bb268
commit 06cb5c1bb7

View File

@@ -492,7 +492,7 @@ static unsigned long long hw_swap_size(struct hw_destination* dest) {
}
static unsigned long long hw_boot_size(struct hw_destination* dest) {
return MB2BYTES(128);
return MB2BYTES(256);
}
static int hw_device_has_p_suffix(const struct hw_destination* dest) {