📄 install.sh
字号:
#!/bin/sh## arch/arm/boot/install.sh## This file is subject to the terms and conditions of the GNU General Public# License. See the file "COPYING" in the main directory of this archive# for more details.## Copyright (C) 1995 by Linus Torvalds## Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin# Adapted from code in arch/i386/boot/install.sh by Russell King## "make install" script for arm architecture## Arguments:# $1 - kernel version# $2 - kernel image file# $3 - kernel map file# $4 - default install path (blank if root directory)## User may have a custom install scriptif [ -x ~/bin/${CROSS_COMPILE}installkernel ]; then exec ~/bin/${CROSS_COMPILE}installkernel "$@"; fiif [ -x /sbin/${CROSS_COMPILE}installkernel ]; then exec /sbin/${CROSS_COMPILE}installkernel "$@"; fiif [ "$(basename $2)" = "zImage" ]; then# Compressed install echo "Installing compressed kernel" base=vmlinuzelse# Normal install echo "Installing normal kernel" base=vmlinuxfiif [ -f $4/$base-$1 ]; then mv $4/$base-$1 $4/$base-$1.oldficat $2 > $4/$base-$1# Install system map fileif [ -f $4/System.map-$1 ]; then mv $4/System.map-$1 $4/System.map-$1.oldficp $3 $4/System.map-$1if [ -x /sbin/loadmap ]; then /sbin/loadmapelse echo "You have to install it yourself"fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -