11 lines
177 B
Plaintext
11 lines
177 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Kernel post-remove hook for booster.
|
||
|
#
|
||
|
# Arguments passed to this script: $1 pkgname, $2 version.
|
||
|
#
|
||
|
PKGNAME="$1"
|
||
|
VERSION="$2"
|
||
|
|
||
|
rm -f boot/initramfs-${VERSION}.img
|