From 5526c5b8f54e987a1bebdc6f48b527d88e10d099 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 8 Dec 2017 22:48:41 +0000 Subject: [PATCH] Add 50 MB of free space to the root partition (#986) Closes #928. --- pmb/install/install.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pmb/install/install.py b/pmb/install/install.py index 72a249bf..e93caeac 100644 --- a/pmb/install/install.py +++ b/pmb/install/install.py @@ -62,6 +62,7 @@ def get_subpartitions_size(args): # Add some free space, see also: # https://github.com/postmarketOS/pmbootstrap/pull/336 full *= 1.20 + full += 50 * 1024 * 1024 boot += 15 * 1024 * 1024 return (full, boot)