]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
installer: Increase size of /boot to 256 MiB
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 7 Aug 2022 12:00:55 +0000 (12:00 +0000)
committerPeter Müller <peter.mueller@ipfire.org>
Mon, 8 Aug 2022 10:12:43 +0000 (10:12 +0000)
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>
src/installer/hw.c

index 0ed6050b30b9e3ddb49893973c1f038966a7e582..236737c8e570fda18701cd47649e457ac3f8f86d 100644 (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) {