Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | # This file is subject to the terms and conditions of the GNU General Public |
| 4 | # License. See the file "COPYING" in the main directory of this archive |
| 5 | # for more details. |
| 6 | # |
| 7 | # Copyright (C) 1995 by Linus Torvalds |
| 8 | # |
| 9 | # Blatantly stolen from in arch/i386/boot/install.sh by Dave Hansen |
| 10 | # |
| 11 | # "make install" script for ppc64 architecture |
| 12 | # |
| 13 | # Arguments: |
| 14 | # $1 - kernel version |
| 15 | # $2 - kernel image file |
| 16 | # $3 - kernel map file |
| 17 | # $4 - default install path (blank if root directory) |
| 18 | # $5 - kernel boot file, the zImage |
| 19 | # |
| 20 | |
| 21 | # User may have a custom install script |
| 22 | |
Ian Campbell | 0f8e2d6 | 2005-06-23 00:08:10 -0700 | [diff] [blame] | 23 | if [ -x ~/bin/${CROSS_COMPILE}installkernel ]; then exec ~/bin/${CROSS_COMPILE}installkernel "$@"; fi |
| 24 | if [ -x /sbin/${CROSS_COMPILE}installkernel ]; then exec /sbin/${CROSS_COMPILE}installkernel "$@"; fi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | # Default install |
| 27 | |
| 28 | # this should work for both the pSeries zImage and the iSeries vmlinux.sm |
Olaf Hering | 18c5332 | 2005-10-28 17:46:56 -0700 | [diff] [blame] | 29 | image_name=`basename $2` |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | if [ -f $4/$image_name ]; then |
| 32 | mv $4/$image_name $4/$image_name.old |
| 33 | fi |
| 34 | |
| 35 | if [ -f $4/System.map ]; then |
| 36 | mv $4/System.map $4/System.old |
| 37 | fi |
| 38 | |
| 39 | cat $2 > $4/$image_name |
| 40 | cp $3 $4/System.map |