From d8aba7e81bad41845a64d9ce63baf118c1285780 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 12 Oct 2018 09:36:33 +0200 Subject: [PATCH] Add ten more megabytes of free space for /boot --- pmb/install/_install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmb/install/_install.py b/pmb/install/_install.py index 9dbfe2f2..a351f788 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -61,10 +61,10 @@ def get_subpartitions_size(args): # /dev/installp2 full = root - home - # Add some free space, see also: #336 + # Add some free space, see also: #336, #1671 full *= 1.20 full += 50 * 1024 * 1024 - boot += 15 * 1024 * 1024 + boot += 25 * 1024 * 1024 return (boot, full - boot)