![]() |
|
|||
0001 #!/bin/sh 0002 # SPDX-License-Identifier: GPL-2.0 0003 # 0004 # arch/s390x/boot/install.sh 0005 # 0006 # Copyright (C) 1995 by Linus Torvalds 0007 # 0008 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin 0009 # 0010 # "make install" script for s390 architecture 0011 # 0012 # Arguments: 0013 # $1 - kernel version 0014 # $2 - kernel image file 0015 # $3 - kernel map file 0016 # $4 - default install path (blank if root directory) 0017 0018 echo "Warning: '${INSTALLKERNEL}' command not available - additional " \ 0019 "bootloader config required" >&2 0020 if [ -f $4/vmlinuz-$1 ]; then mv $4/vmlinuz-$1 $4/vmlinuz-$1.old; fi 0021 if [ -f $4/System.map-$1 ]; then mv $4/System.map-$1 $4/System.map-$1.old; fi 0022 0023 cat $2 > $4/vmlinuz-$1 0024 cp $3 $4/System.map-$1
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |