Linux Audio

Check our new training course

Loading...
v6.2
 1#!/bin/sh
 2#
 
 
 3# This file is subject to the terms and conditions of the GNU General Public
 4# License.  See the file "COPYING" in the main directory of this archive
 5# for more details.
 6#
 7# Copyright (C) 1995 by Linus Torvalds
 8#
 9# Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
10# Adapted from code in arch/i386/boot/install.sh by Russell King
11#
12# "make install" script for arm architecture
13#
14# Arguments:
15#   $1 - kernel version
16#   $2 - kernel image file
17#   $3 - kernel map file
18#   $4 - default install path (blank if root directory)
 
 
 
 
 
19
20if [ "$(basename $2)" = "zImage" ]; then
21# Compressed install
22  echo "Installing compressed kernel"
23  base=vmlinuz
24else
25# Normal install
26  echo "Installing normal kernel"
27  base=vmlinux
28fi
29
30if [ -f $4/$base-$1 ]; then
31  mv $4/$base-$1 $4/$base-$1.old
32fi
33cat $2 > $4/$base-$1
34
35# Install system map file
36if [ -f $4/System.map-$1 ]; then
37  mv $4/System.map-$1 $4/System.map-$1.old
38fi
39cp $3 $4/System.map-$1
40
41if [ -x /sbin/loadmap ]; then
42  /sbin/loadmap
43else
44  echo "You have to install it yourself"
45fi
v3.5.6
 1#!/bin/sh
 2#
 3# arch/arm/boot/install.sh
 4#
 5# This file is subject to the terms and conditions of the GNU General Public
 6# License.  See the file "COPYING" in the main directory of this archive
 7# for more details.
 8#
 9# Copyright (C) 1995 by Linus Torvalds
10#
11# Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
12# Adapted from code in arch/i386/boot/install.sh by Russell King
13#
14# "make install" script for arm architecture
15#
16# Arguments:
17#   $1 - kernel version
18#   $2 - kernel image file
19#   $3 - kernel map file
20#   $4 - default install path (blank if root directory)
21#
22
23# User may have a custom install script
24if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi
25if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi
26
27if [ "$(basename $2)" = "zImage" ]; then
28# Compressed install
29  echo "Installing compressed kernel"
30  base=vmlinuz
31else
32# Normal install
33  echo "Installing normal kernel"
34  base=vmlinux
35fi
36
37if [ -f $4/$base-$1 ]; then
38  mv $4/$base-$1 $4/$base-$1.old
39fi
40cat $2 > $4/$base-$1
41
42# Install system map file
43if [ -f $4/System.map-$1 ]; then
44  mv $4/System.map-$1 $4/System.map-$1.old
45fi
46cp $3 $4/System.map-$1
47
48if [ -x /sbin/loadmap ]; then
49  /sbin/loadmap
50else
51  echo "You have to install it yourself"
52fi