mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
18 lines
259 B
Text
18 lines
259 B
Text
post_install() {
|
|
echo -e "\033[1mNotice\033[0m"
|
|
echo "You no longer have to move any files - the kernel is installed"
|
|
echo "and ready to go - just reboot."
|
|
echo ""
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
KERNEL_VERSION=.*
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|