14d62d90f7
Co-authored-by: Andrew J. Hesford <ajh@sideband.org>
10 lines
177 B
Bash
10 lines
177 B
Bash
#!/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
|