mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
413 B
Text
24 lines
413 B
Text
post_install() {
|
|
cat <<INSTALL
|
|
If running from internal NAND, run:
|
|
/usr/share/plugapps/kernel/README-* --nandkernel
|
|
|
|
If running from SD/MMC/USB, run:
|
|
/usr/share/plugapps/kernel/README-* --rootkernel
|
|
and then copy the kernel to /boot/uImage.
|
|
|
|
Also, check the U-Boot environment variables and reboot.
|
|
INSTALL
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
KERNEL_VERSION=.*
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|