diff --git a/main/postmarketos-mkinitfs/postmarketos-mkinitfs.post-upgrade b/main/postmarketos-mkinitfs/postmarketos-mkinitfs.post-upgrade index 53a62ac95..6a0bec3bc 100644 --- a/main/postmarketos-mkinitfs/postmarketos-mkinitfs.post-upgrade +++ b/main/postmarketos-mkinitfs/postmarketos-mkinitfs.post-upgrade @@ -4,9 +4,11 @@ # appended kernel 'flavors'. Without doing this cleanup, /boot might be more # full than it needs to be, and things like copying files atomically in the new # mkinitfs may not have enough space to do the atomic copy -echo "Cleaning up old boot files..." for f in /boot/boot.img-* /boot/initramfs-*-extra* /boot/initramfs-*[!-extra]; do - [ -f "$f" ] && rm -v "$f" + if [ -f "$f" ]; then + echo "mkinitfs: cleaning up old boot file: $f" + rm "$f" + fi done exit 0