Skip to content
Snippets Groups Projects
Unverified Commit 31b1dfdb authored by nl6720's avatar nl6720
Browse files

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

There is nothing useful in /boot for the live system.
parent 7c2247f6
No related branches found
No related tags found
1 merge request!59Replace build.sh scripts with mkarchiso
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment