install.sh 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #!/bin/sh
  2. #
  3. # arch/arm64/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 the AArch64 Linux port
  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. verify () {
  23. if [ ! -f "$1" ]; then
  24. echo "" 1>&2
  25. echo " *** Missing file: $1" 1>&2
  26. echo ' *** You need to run "make" before "make install".' 1>&2
  27. echo "" 1>&2
  28. exit 1
  29. fi
  30. }
  31. # Make sure the files actually exist
  32. verify "$2"
  33. verify "$3"
  34. # User may have a custom install script
  35. if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi
  36. if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi
  37. if [ "$(basename $2)" = "Image.gz" ]; then
  38. # Compressed install
  39. echo "Installing compressed kernel"
  40. base=vmlinuz
  41. else
  42. # Normal install
  43. echo "Installing normal kernel"
  44. base=vmlinux
  45. fi
  46. if [ -f $4/$base-$1 ]; then
  47. mv $4/$base-$1 $4/$base-$1.old
  48. fi
  49. cat $2 > $4/$base-$1
  50. # Install system map file
  51. if [ -f $4/System.map-$1 ]; then
  52. mv $4/System.map-$1 $4/System.map-$1.old
  53. fi
  54. cp $3 $4/System.map-$1