summaryrefslogtreecommitdiffstats
path: root/os-plugins
diff options
context:
space:
mode:
authorOliver Tappe2008-01-14 21:33:17 +0100
committerOliver Tappe2008-01-14 21:33:17 +0100
commit3dc48eceb86a6069a9ba9b7255364bb150d1cff4 (patch)
treecb1d5baa5e93cbc3ad5ab79470a9daca73044621 /os-plugins
parentreimplemented splashy stuff via Theme plugin: (diff)
downloadcore-3dc48eceb86a6069a9ba9b7255364bb150d1cff4.tar.gz
core-3dc48eceb86a6069a9ba9b7255364bb150d1cff4.tar.xz
core-3dc48eceb86a6069a9ba9b7255364bb150d1cff4.zip
* no bootsplash is being used if a debuglevel has been set (as was before)
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1473 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins')
-rw-r--r--os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh b/os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh
index 48c08581..c249824c 100644
--- a/os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh
+++ b/os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh
@@ -1,7 +1,8 @@
-# splashy stuff seems to depend on /proc/fb with VESA!?
-# only activate with kernel option quiet
+# splashy depends on /proc/fb with VESA
+# only activate with kernel option quiet and no debuglevel
if grep -E "(VESA|VGA)" /proc/fb > /dev/null 2>&1 \
- && grep -qi " quiet " /proc/cmdline > /dev/null 2>&1 ; then
+ && grep -qi " quiet " /proc/cmdline > /dev/null 2>&1 \
+ && [ $DEBUGLEVEL -eq 0 ] ; then
export Theme_nosplash=0
else
export Theme_nosplash=1