summaryrefslogtreecommitdiff
path: root/packages/altboot/files/spitz/altboot-menu/20-bootCF
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2006-04-03 08:47:52 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-04-03 08:47:52 +0000
commit3d7661e995ea25e3d6909a0c711817495f54ac32 (patch)
tree64ef5c1f896f7ef3a069504731c59bd2059c26f1 /packages/altboot/files/spitz/altboot-menu/20-bootCF
parent7b4a0c125c3476655207bc2ec5fbb771b1712721 (diff)
altboot: Drop kernel 2.4 support for Spitz and Borzoi. These two were a support nightmare w/ 2.4
Diffstat (limited to 'packages/altboot/files/spitz/altboot-menu/20-bootCF')
-rw-r--r--packages/altboot/files/spitz/altboot-menu/20-bootCF49
1 files changed, 0 insertions, 49 deletions
diff --git a/packages/altboot/files/spitz/altboot-menu/20-bootCF b/packages/altboot/files/spitz/altboot-menu/20-bootCF
deleted file mode 100644
index 3f19b4ee48..0000000000
--- a/packages/altboot/files/spitz/altboot-menu/20-bootCF
+++ /dev/null
@@ -1,49 +0,0 @@
-# !/bin/sh
-#
-# Copyright Matthias Hentges (c) 2005
-#
-# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the GPL)
-
-# FXIME: boot CF on spitz (hdb??)
-exit 0
-
-M_TITLE="Boot CF card"
-
-die() {
- echo "ERROR: $1" >/dev/tty0
- exec $SH_SHELL </dev/tty0 >/dev/tty0 2>&1
-}
-
-# This function is activated by init.altboot by calling this script with the "run" option
-run_module() {
-
- test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!"
-
- echo -n "Mounting rootfs rw..." >/dev/tty0
- mount -o remount,rw / >/dev/tty0 2>&1 && echo ok >/dev/tty0|| die "mount -o remount,rw / failed"
-
- echo -n "Generating device files..." >/dev/tty0
- /etc/init.d/devices start && echo ok >/dev/tty0|| die "FAILED"
-
-
- echo -n "Mounting /proc..." >/dev/tty0
- mount /proc >/dev/tty0 2>&1 && echo ok >/dev/tty0|| die "mount /proc failed!"
-
- /etc/init.d/pcmcia start || die "/etc/init.d/pcmcia/start failed!"
-
- echo ""
-
- # Give the SD and CF mounting some time. This is a must for SD
- sleep 2
-
- # Check for a real fs and loop-images.
- check_target "$CF_MOUNTPOINT"
-
-}
-
-
-case "$1" in
-title) echo "$M_TITLE";;
-run) run_module "$2";;
-esac
-