mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-01 06:57:50 +00:00
busybox: add runlevel 'installer'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
816d453095
commit
b551e33292
@ -4,6 +4,9 @@
|
|||||||
textmode)
|
textmode)
|
||||||
TEXTMODE=yes
|
TEXTMODE=yes
|
||||||
;;
|
;;
|
||||||
|
installer)
|
||||||
|
INSTALLER=yes
|
||||||
|
;;
|
||||||
debugging)
|
debugging)
|
||||||
DEBUG=yes
|
DEBUG=yes
|
||||||
;;
|
;;
|
||||||
|
@ -7,8 +7,13 @@
|
|||||||
|
|
||||||
# getting runlevel
|
# getting runlevel
|
||||||
RUNLEVEL="openelec"
|
RUNLEVEL="openelec"
|
||||||
|
|
||||||
if test "$TEXTMODE" = yes; then
|
if test "$TEXTMODE" = yes; then
|
||||||
RUNLEVEL="textmode"
|
RUNLEVEL="textmode"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "$INSTALLER" = yes; then
|
||||||
|
RUNLEVEL="installer"
|
||||||
|
fi
|
||||||
|
|
||||||
export RUNLEVEL
|
export RUNLEVEL
|
Loading…
x
Reference in New Issue
Block a user