busybox: add runlevel 'installer'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-07-06 19:22:42 +02:00
parent 816d453095
commit b551e33292
2 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,9 @@
textmode)
TEXTMODE=yes
;;
installer)
INSTALLER=yes
;;
debugging)
DEBUG=yes
;;

View File

@ -7,8 +7,13 @@
# getting runlevel
RUNLEVEL="openelec"
if test "$TEXTMODE" = yes; then
RUNLEVEL="textmode"
fi
if test "$INSTALLER" = yes; then
RUNLEVEL="installer"
fi
export RUNLEVEL