Increase size of /boot to 512 MiB

Is XFS is being selected as file system, the minimum size requirement is
300 MiB. In order to keep it to a round number, this patch increases the
size of /boot to 512 MiB.

To keep all systems consistent, we will also do this on systems that are
being formatted using different file systems.

Fixes: #13077 - xfs cannot installed anymore because boot is to small
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2023-04-21 12:18:14 +00:00
committed by Peter Müller
parent d92134b818
commit ffdc6fbba8
2 changed files with 3 additions and 3 deletions

View File

@@ -490,7 +490,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(256);
return MB2BYTES(512);
}
static int hw_device_has_p_suffix(const struct hw_destination* dest) {