14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Kernel post-remove hook for mkinitcpio.
|
||
|
#
|
||
|
# Arguments passed to this script: $1 pkgname, $2 version.
|
||
|
#
|
||
|
PKGNAME="$1"
|
||
|
VERSION="$2"
|
||
|
|
||
|
if [ -f /boot/initramfs-${VERSION}.img ]; then
|
||
|
rm -f /boot/initramfs-${VERSION}.img
|
||
|
fi
|
||
|
exit $?
|