?? 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 + -