Added installation warning to move uImage to the right place

This commit is contained in:
Mike Staszel 2010-07-20 08:34:51 -07:00
parent b177e67d45
commit bb8fcc67df
2 changed files with 20 additions and 2 deletions

View file

@ -45,7 +45,7 @@ build() {
make oldconfig
# Make!
make clean modules uImage
make clean modules uImage || return 1
# Pack up the created uImage
mkdir -p $pkgdir/boot
@ -56,5 +56,5 @@ build() {
make INSTALL_MOD_PATH=${pkgdir} modules_install || return 1
echo "To make things safer, you will manually have to move/copy"
echo "/boot/uImage-dockstar to /boot/uImage."
echo "/boot/uImage-dockstar to /boot/uImage after installation."
}

View file

@ -0,0 +1,18 @@
post_install() {
echo -e "\033[1mNotice\033[0m"
echo "To make things safer, you will manually have to move/copy"
echo "/boot/uImage-dockstar to /boot/uImage."
echo ""
}
post_upgrade() {
post_install
}
post_remove() {
KERNEL_VERSION=.*
}
op=$1
shift
$op $*