Link: https://lore.kernel.org/r/20251127144032.705323598@linuxfoundation.org Tested-by: Pavel Machek (CIP) <pavel@denx.de> Link: https://lore.kernel.org/r/20251127150346.125775439@linuxfoundation.org Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Linux Kernel Functional Testing <lkft@linaro.org> Tested-by: Dileep Malepu <dileep.debian@gmail.com> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
26 lines
912 B
Bash
Executable File
26 lines
912 B
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# because I use CONFIG_LOCALVERSION_AUTO, not the same version again and
|
|
# again, /boot and /lib/modules/ eventually fill up.
|
|
# Dumb script to purge that stuff:
|
|
|
|
for f in "$@"
|
|
do
|
|
if rpm -qf "/lib/modules/$f" >/dev/null; then
|
|
echo "keeping $f (installed from rpm)"
|
|
elif [ $(uname -r) = "$f" ]; then
|
|
echo "keeping $f (running kernel) "
|
|
else
|
|
echo "removing $f"
|
|
rm -f "/boot/initramfs-$f.img" "/boot/System.map-$f"
|
|
rm -f "/boot/vmlinuz-$f" "/boot/config-$f"
|
|
rm -rf "/lib/modules/$f"
|
|
if [ -x "$(command -v new-kernel-pkg)" ]; then
|
|
new-kernel-pkg --remove $f
|
|
elif [ -x "$(command -v kernel-install)" ]; then
|
|
kernel-install remove $f
|
|
fi
|
|
fi
|
|
done
|