install.sh 783 B

1234567891011121314151617181920212223242526272829303132333435
  1. #!/bin/sh
  2. # SPDX-License-Identifier: GPL-2.0
  3. #
  4. # arch/s390x/boot/install.sh
  5. #
  6. # Copyright (C) 1995 by Linus Torvalds
  7. #
  8. # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
  9. #
  10. # "make install" script for s390 architecture
  11. #
  12. # Arguments:
  13. # $1 - kernel version
  14. # $2 - kernel image file
  15. # $3 - kernel map file
  16. # $4 - default install path (blank if root directory)
  17. #
  18. # User may have a custom install script
  19. if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi
  20. if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi
  21. # Default install - same as make zlilo
  22. if [ -f $4/vmlinuz ]; then
  23. mv $4/vmlinuz $4/vmlinuz.old
  24. fi
  25. if [ -f $4/System.map ]; then
  26. mv $4/System.map $4/System.old
  27. fi
  28. cat $2 > $4/vmlinuz
  29. cp $3 $4/System.map