archiso/mkarchiso: delete all files in /boot not just the kernel and initramfs

There is nothing useful in /boot for the live system.
This commit is contained in:
nl6720 2020-08-12 17:34:33 +03:00
parent 7c2247f615
commit 31b1dfdbe4
No known key found for this signature in database
GPG Key ID: 5CE88535E188D369

View File

@ -187,13 +187,9 @@ _pacman () {
_cleanup () {
_msg_info "Cleaning up what we can on airootfs..."
# Delete initcpio image(s)
# Delete all files in /boot
if [[ -d "${airootfs_dir}/boot" ]]; then
find "${airootfs_dir}/boot" -type f -name '*.img' -delete
fi
# Delete kernel(s)
if [[ -d "${airootfs_dir}/boot" ]]; then
find "${airootfs_dir}/boot" -type f -name 'vmlinuz*' -delete
find "${airootfs_dir}/boot" -mindepth 1 -delete
fi
# Delete pacman database sync cache files (*.tar.gz)
if [[ -d "${airootfs_dir}/var/lib/pacman" ]]; then