install.sh
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # arch/arm/boot/install.sh
  4. #
  5. # This file is subject to the terms and conditions of the GNU General Public
  6. # License.  See the file "COPYING" in the main directory of this archive
  7. # for more details.
  8. #
  9. # Copyright (C) 1995 by Linus Torvalds
  10. #
  11. # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
  12. # Adapted from code in arch/i386/boot/install.sh by Russell King
  13. #
  14. # "make install" script for arm architecture
  15. #
  16. # Arguments:
  17. #   $1 - kernel version
  18. #   $2 - kernel image file
  19. #   $3 - kernel map file
  20. #   $4 - default install path (blank if root directory)
  21. #
  22. # User may have a custom install script
  23. if [ -x /sbin/installkernel ]; then
  24.   exec /sbin/installkernel "$@"
  25. fi
  26. if [ "$2" = "zImage" ]; then
  27. # Compressed install
  28.   echo "Installing compressed kernel"
  29.   if [ -f $4/vmlinuz-$1 ]; then
  30.     mv $4/vmlinuz-$1 $4/vmlinuz.old
  31.   fi
  32.   if [ -f $4/System.map-$1 ]; then
  33.     mv $4/System.map-$1 $4/System.old
  34.   fi
  35.   cat $2 > $4/vmlinuz-$1
  36.   cp $3 $4/System.map-$1
  37. else
  38. # Normal install
  39.   echo "Installing normal kernel"
  40.   if [ -f $4/vmlinux-$1 ]; then
  41.     mv $4/vmlinux-$1 $4/vmlinux.old
  42.   fi
  43.   if [ -f $4/System.map ]; then
  44.     mv $4/System.map $4/System.old
  45.   fi
  46.   cat $2 > $4/vmlinux-$1
  47.   cp $3 $4/System.map
  48. fi
  49. if [ -x /sbin/loadmap ]; then
  50.   /sbin/loadmap --rdev /dev/ima
  51. else
  52.   echo "You have to install it yourself"
  53. fi