Add ten more megabytes of free space for /boot

This commit is contained in:
Oliver Smith 2018-10-12 09:36:33 +02:00
parent b8dc816af0
commit d8aba7e81b
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 2 additions and 2 deletions

View File

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