2009-11-13 01:35:46 +00:00
|
|
|
post_install() {
|
2010-02-05 03:46:17 +00:00
|
|
|
chmod 755 /usr/share/plugapps/kernel/README-*
|
|
|
|
|
2010-02-05 17:45:00 +00:00
|
|
|
cat <<INSTALL
|
2010-02-05 03:46:17 +00:00
|
|
|
If running from internal NAND, run:
|
2010-02-06 08:04:44 +00:00
|
|
|
/usr/share/plugapps/kernel/README-2.6.32.7 --nandkernel
|
2010-02-05 03:46:17 +00:00
|
|
|
|
2010-02-27 16:19:00 +00:00
|
|
|
If running from SD/MMC or on a TonidoPlug, run:
|
2010-02-06 08:04:44 +00:00
|
|
|
/usr/share/plugapps/kernel/README-2.6.32.7 --rootkernel
|
2010-02-05 03:46:17 +00:00
|
|
|
and then copy the kernel to /boot/uImage.
|
|
|
|
|
|
|
|
Also, check the U-Boot environment variables and reboot.
|
2010-02-06 07:53:30 +00:00
|
|
|
|
|
|
|
If you are using a Pogoplug, do NOT run either of the above.
|
2010-02-05 17:45:00 +00:00
|
|
|
INSTALL
|
2009-11-13 01:35:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post_upgrade() {
|
2010-02-05 17:45:00 +00:00
|
|
|
post_install
|
2009-11-13 01:35:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post_remove() {
|
|
|
|
KERNEL_VERSION=.*
|
|
|
|
}
|
|
|
|
|
|
|
|
op=$1
|
|
|
|
shift
|
|
|
|
$op $*
|