blob: 50d35ed542258dc0882b1f07f8f7f5d9f8ccd25f (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#!/bin/sh
# NOTE: Ported to altboot by CoreDump <oe@hentges.net>
# Based on the original turnup helper script.
#
# All parts by Matthias 'CoreDump' Hentges are hereby placed
# under the terms of the GPL
#
# boot from the hard disk partition "$1" (which
# must be given) using options from the rest of
# the command line.
#
M_TITLE="Boot USB Storage"
test "$USB_HOST_AVAILABLE" = "yes" || exit 0
run_module() {
x=x
}
case "$1" in
title) echo "$M_TITLE" ; exit 0 ;;
run) run_module "$2";;
esac
nslu2_feeback heartbeat
bootdev_data="$*"
bootdev_mode="`echo "$bootdev_data" | awk '{print $1}'`"
bootdev_name="`echo "$bootdev_data" | awk '{print $2}'`"
bootdev_uuid="`echo "$bootdev_data" | awk '{print $3}'`"
# Use the standard init path (see /etc/init.d/rcS)
export PATH=/sbin:/bin:/usr/sbin:/usr/bin
#
# Load the helper functions
. /etc/default/functions
. /etc/default/modulefunctions
#
leds boot system
#
if test -n "$1"
then
device="$bootdev_name"
UUID="$bootdev_uuid"
shift
# proc is needed for UUID mount and module load
mount -t proc proc /proc
# load USB & SCSI storage modules (/proc required!)
echo "boot: loading modules required for disk boot"
loaddiskmods
# waiting for disk (FIXME)
sleep=6
test "$sleep" -gt 0 && sleep "$sleep"
#
# fire the boot
echo "boot: rootfs: mount $* $device [$UUID]"
#
# Mount read-write because before exec'ing init
# If a UUID is given (in the environment) this
# is used in preference to the device, but if
# the UUID mount fails a standard device mount
# is attempted.
if test -n "$UUID" &&
mount "$@" -U "$UUID" /mnt ||
mount "$@" "$device" /mnt
then
# checkmount checks for sh, chroot, init
# and /mnt (i.e. /mnt/mnt in this case)
if checkmount /mnt
then
# pivot to /initrd if available, else /mnt
cd /
if test -d /mnt/initrd
then
swivel mnt initrd
else
swivel mnt mnt
fi
# swivel failed
fi
# Failure: unmount the partition
umount /mnt
fi
fi
# fallback - use the flash boot
nslu2_feeback failure
exec /boot/flash
|