blob: 4add6e663134b8c5fccaf3e895c3b590889852b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# !/bin/sh
#
# Copyright Matthias Hentges (c) 2005
#
# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the GPL)
M_TITLE="Boot CF card"
test "$DISABLE_CF_BOOT" = yes && exit 0
# 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!"
# Mount /proc, etc
init_rootfs
mount_cf
# Check for a real fs and loop-images.
check_target "$CF_MOUNTPOINT"
}
case "$1" in
title) echo "$M_TITLE";;
run) run_module "$2";;
esac
|