From bea1884bd79cd91c4b31c2bd20c6f06d029c1e22 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 18 May 2018 17:14:15 +0100 Subject: [PATCH] installer: Increase size of /boot to 128M Fixes #11736 Signed-off-by: Michael Tremer --- src/installer/hw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/hw.c b/src/installer/hw.c index 06bf42b67..add36c8f4 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -436,7 +436,7 @@ static unsigned long long hw_root_size(struct hw_destination* dest) { } static unsigned long long hw_boot_size(struct hw_destination* dest) { - return MB2BYTES(64); + return MB2BYTES(128); } static int hw_device_has_p_suffix(const struct hw_destination* dest) {