From d78d1c43d734404184cf4efe8f32aaa9ca22f2ef Mon Sep 17 00:00:00 2001 From: Thomas Kaiser Date: Wed, 19 Oct 2016 14:17:57 +0200 Subject: [PATCH] BOOTSIZE=32 is too small only 1.7 MB free with mainline kernel and therefore upgrade troubles on /boot --- debootstrap-ng.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debootstrap-ng.sh b/debootstrap-ng.sh index 3c602b30a..5af6679ab 100644 --- a/debootstrap-ng.sh +++ b/debootstrap-ng.sh @@ -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