Increase the size of boot partition. (!1884)

Give enough space to do atomic replacement of boot files, as is now done
with:
ed3eeeeebb
This commit is contained in:
KuroLevin 2020-03-01 06:55:00 +00:00 committed by Oliver Smith
parent f565d6e153
commit b05c0e78c7
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 0 deletions

View File

@ -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)