]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/altboot/files/altboot-menu/Advanced/60-orig-init
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / altboot / files / altboot-menu / Advanced / 60-orig-init
1 # !/bin/sh
2 M_TITLE="Boot original INIT"
3
4 exit 0
5
6 run_module() {
7         
8         test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!"
9         
10         echo "altboot: Using real init [$REAL_INIT] [$INIT_RUNLEVEL] *" >/dev/tty1
11         exec $REAL_INIT $INIT_RUNLEVEL
12         exit 0  
13         
14 }
15
16 case "$1" in
17 title)  echo "$M_TITLE";;
18 run)    run_module;;
19 esac
20