mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
31 lines
668 B
Text
31 lines
668 B
Text
KERNEL_NAME=
|
|
KERNEL_VERSION=2.6.37
|
|
|
|
post_install() {
|
|
# ARM doesn't use mkinitcpio or anything like that
|
|
# so we skip it here
|
|
echo -e "\033[1mNotice\033[0m"
|
|
echo "If you have a SheevaPlug, you will have to copy"
|
|
echo "/boot/uImage to the proper location, e.g. /dev/mmcblk0p1"
|
|
echo "after removing the old one."
|
|
echo ""
|
|
echo "If you boot from USB, you do not need to do anything."
|
|
echo ""
|
|
echo "This package is for all plugs, including the Dockstar."
|
|
echo ""
|
|
echo "Installing now..."
|
|
# Just making sure kernel modules still work after we moved to .gz
|
|
/sbin/depmod 2.6.37
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
KERNEL_VERSION=2.6.37
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|