summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
diff options
context:
space:
mode:
authorMichael Janczyk2008-04-15 17:45:14 +0200
committerMichael Janczyk2008-04-15 17:45:14 +0200
commita8138e6f68dac34fe2769cde4f9a7b8ccd734241 (patch)
treea4469e212b08b2436d526eb5b93b0e07b4aac383 /os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
parentVorlage_VMwareImageAdministrator.xml: added tags for printers, shared drives ... (diff)
downloadcore-a8138e6f68dac34fe2769cde4f9a7b8ccd734241.tar.gz
core-a8138e6f68dac34fe2769cde4f9a7b8ccd734241.tar.xz
core-a8138e6f68dac34fe2769cde4f9a7b8ccd734241.zip
removed bootsplash stuff from theme plugin, because of conflicts with bootsplash. didn't remove it until now because one could use it instead of bootsplash and displaymanager plugin but bootsplash doesn't work anymore with the themem plugin. so it had to be removed so bootsplash can be installed.
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1745 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh')
-rw-r--r--os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh16
1 files changed, 0 insertions, 16 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
deleted file mode 100644
index 8fdec8d7..00000000
--- a/os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-# 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 \
- && [ $DEBUGLEVEL -eq 0 ] \
- && [ -e /bin/splashy ] ; then
- export theme_nosplash=0
-else
- export theme_nosplash=1
-fi
-
-if [ ${theme_nosplash} -eq 0 ]; then
- /bin/splashy boot 2>/dev/null
- # add splashy.stop runlevel script
- D_SPLASHY=splashy.stop
-fi