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 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 d 17 18 set -e 19 20 echo "Warning: '${INSTALLKERNEL}' command not 21 "bootloader config required" >&2 22 if [ -f "$4/vmlinuz-$1" ]; then mv -- "$4/vmli 23 if [ -f "$4/System.map-$1" ]; then mv -- "$4/S 24 25 cat -- "$2" > "$4/vmlinuz-$1" 26 cp -- "$3" "$4/System.map-$1"
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.