summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh
diff options
context:
space:
mode:
authorDirk von Suchodoletz2008-10-15 01:12:27 +0200
committerDirk von Suchodoletz2008-10-15 01:12:27 +0200
commitf943f65283f2a81bb176147dcb1ba0fa4da1b54f (patch)
treec4e770847df2ed63a6e5c9f79e65548da8a1f82e /os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh
parentApplying init-wrapper to the init-hook system. (diff)
downloadcore-f943f65283f2a81bb176147dcb1ba0fa4da1b54f.tar.gz
core-f943f65283f2a81bb176147dcb1ba0fa4da1b54f.tar.xz
core-f943f65283f2a81bb176147dcb1ba0fa4da1b54f.zip
Needed changes because of the init-wrapper, new init-hook system, check
comments of r2302. git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2303 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh')
-rw-r--r--os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh14
1 files changed, 5 insertions, 9 deletions
diff --git a/os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh
index e3e56e99..6ccbd9f0 100644
--- a/os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh
+++ b/os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh
@@ -5,13 +5,9 @@ if grep -E "(VESA|VGA)" /proc/fb > /dev/null 2>&1 \
> /dev/null 2>&1 \
&& [ $DEBUGLEVEL -eq 0 ] \
&& [ -e /bin/splashy ] ; then
- export no_bootsplash=0
-else
- export no_bootsplash=1
-fi
-
-if [ ${no_bootsplash} -eq 0 ]; then
- /bin/splashy boot 2>/dev/null
- # add splashy.stop runlevel script
- D_SPLASHY=splashy.stop
+ echo "we have bootsplash" >/tmp/bootsplash
+ /bin/splashy boot 2>/dev/null
+ # add splashy.stop runlevel script (does not work any more here,
+ # temporarily moved to init awaiting a proper solution)
+ #D_SPLASHY=splashy.stop
fi