install.sh 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #!/bin/sh
  2. #
  3. # arch/blackfin/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 Mike Frysinger
  13. #
  14. # "make install" script for Blackfin 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. 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 which ${INSTALLKERNEL} >/dev/null 2>&1; then
  37. exec ${INSTALLKERNEL} "$@"
  38. fi
  39. # Default install - same as make zlilo
  40. back_it_up() {
  41. local file=$1
  42. [ -f ${file} ] || return 0
  43. local stamp=$(stat -c %Y ${file} 2>/dev/null)
  44. mv ${file} ${file}.${stamp:-old}
  45. }
  46. back_it_up $4/uImage
  47. back_it_up $4/System.map
  48. cat $2 > $4/uImage
  49. cp $3 $4/System.map