mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-30 18:51:30 +00:00
BOOTSIZE=32 is too small
only 1.7 MB free with mainline kernel and therefore upgrade troubles on /boot
This commit is contained in:
parent
aeae3637c1
commit
d78d1c43d7
1 changed files with 2 additions and 2 deletions
|
@ -339,13 +339,13 @@ prepare_partitions()
|
|||
local rootpart=2
|
||||
elif [[ $ROOTFS_TYPE != ext4 && $ROOTFS_TYPE != nfs ]]; then
|
||||
# ext4 /boot + non-ext4 root
|
||||
BOOTSIZE=32 # MiB
|
||||
BOOTSIZE=64 # MiB
|
||||
local bootfs=ext4
|
||||
local bootpart=1
|
||||
local rootpart=2
|
||||
elif [[ $ROOTFS_TYPE == nfs ]]; then
|
||||
# ext4 /boot, no root
|
||||
BOOTSIZE=32 # For cleanup processing only
|
||||
BOOTSIZE=64 # For cleanup processing only
|
||||
local bootfs=ext4
|
||||
local bootpart=1
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue