From: Stefan Schantl Date: Sun, 25 Feb 2024 10:48:57 +0000 (+0100) Subject: installer: Disable seperate boot partition X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1b035bfd97d47083873534c957c7f067602f5797;p=people%2Fstevee%2Fipfire-2.x.git installer: Disable seperate boot partition This will merge /boot and / to be on the same partition. Signed-off-by: Stefan Schantl --- diff --git a/src/installer/hw.c b/src/installer/hw.c index b9ed92459..81be87471 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -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(512); + return 0; } static int hw_device_has_p_suffix(const struct hw_destination* dest) {