From b05c0e78c79011bb3ab2bdf9342c196df08783f3 Mon Sep 17 00:00:00 2001 From: KuroLevin Date: Sun, 1 Mar 2020 06:55:00 +0000 Subject: [PATCH] Increase the size of boot partition. (!1884) Give enough space to do atomic replacement of boot files, as is now done with: https://gitlab.com/postmarketOS/pmaports/-/commit/ed3eeeeebb1e4ea7b93c48280bd6a5bd94b44865 --- pmb/install/_install.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pmb/install/_install.py b/pmb/install/_install.py index 9296060e..abc268d3 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -48,6 +48,7 @@ def get_subpartitions_size(args): # Add some free space, see also: #336, #1671 full *= 1.20 full += 50 * 1024 * 1024 + boot *= 2 boot += 25 * 1024 * 1024 return (boot, full - boot)