install.sh

来自「omap3 linux 2.6 用nocc去除了冗余代码」· Shell 代码 · 共 53 行

SH
53
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?