mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-09 00:17:31 +00:00
Added installation warning to move uImage to the right place
This commit is contained in:
parent
b177e67d45
commit
bb8fcc67df
2 changed files with 20 additions and 2 deletions
|
@ -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."
|
||||
}
|
||||
|
|
18
core/kernel26-dockstar/kernel26-dockstar.install
Normal file
18
core/kernel26-dockstar/kernel26-dockstar.install
Normal 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 $*
|
Loading…
Reference in a new issue