summaryrefslogtreecommitdiff
path: root/packages/altboot/files/nslu2le/altboot-menu/00-Default
blob: cb06661d729fc9cf127c393aaecbe7aa5eb62aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# !/bin/sh
M_TITLE="Flash"


run_module() {
	leds beep
	leds boot system
	exec $REAL_INIT "$INIT_RUNLEVEL"
	exit 0
}

case "$1" in
title)	echo "$M_TITLE";;
run)	run_module;;
*)	echo "Unknown parameter [$1]";;
esac