aboutsummaryrefslogtreecommitdiffstats
path: root/packages/altboot/files/altboot-menu/00-Default
blob: 9d29fdae2a8a50874144bd7dd36ea6394381413f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# !/bin/sh
M_TITLE="Normal Boot"


run_module() {
	exec $REAL_INIT "$INIT_RUNLEVEL"
	exit 0
}

case "$1" in
title)	echo "$M_TITLE";;
run)	run_module;;
esac