This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/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
|