summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/fbsplash/fbsplash.daemon
diff options
context:
space:
mode:
authorCecil Hugh Watson <knoppmyth@gmail.com>2010-09-04 22:54:43 (GMT)
committerCecil Hugh Watson <knoppmyth@gmail.com>2010-09-04 22:54:43 (GMT)
commit05408d178b3bb65f895b011705ade34c34b8dce6 (patch)
tree4d17239774a3993a00cb4df34ec9c68dd20dccbf /abs/core-testing/fbsplash/fbsplash.daemon
parent8531795e06d39d7edfea9bb2731ff171417669d5 (diff)
downloadlinhes_pkgbuild-05408d178b3bb65f895b011705ade34c34b8dce6.zip
linhes_pkgbuild-05408d178b3bb65f895b011705ade34c34b8dce6.tar.gz
linhes_pkgbuild-05408d178b3bb65f895b011705ade34c34b8dce6.tar.bz2
fbsplash:Bumped/Updated for LinHES 7.
Diffstat (limited to 'abs/core-testing/fbsplash/fbsplash.daemon')
-rw-r--r--abs/core-testing/fbsplash/fbsplash.daemon56
1 files changed, 0 insertions, 56 deletions
diff --git a/abs/core-testing/fbsplash/fbsplash.daemon b/abs/core-testing/fbsplash/fbsplash.daemon
deleted file mode 100644
index e615500..0000000
--- a/abs/core-testing/fbsplash/fbsplash.daemon
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/bash
-
-source /etc/rc.conf
-source /etc/rc.d/functions
-
-source /sbin/splash-functions.sh
-source /etc/conf.d/fbsplash.conf
-
-case "$1" in
- start)
- if [ "$(fbcondecor_supported)" = "true" ]
- then
- THEME="linhes"
- if [ -f /proc/cmdline ]; then
- OPTIONS=$(grep -o 'splash=[^ ]*' /proc/cmdline)
- for i in $(echo "${OPTIONS#*=}" | sed -e 's/,/ /g')
- do
- case ${i%:*} in
- theme) THEME=${i#*:} ;;
- esac
- done
- fi
- stat_busy "Setting fbcondecor console images"
- for TTY in ${SPLASH_TTYS}; do
- fbcondecor_set_theme ${TTY} ${THEME}
- done
- stat_done
- fi
- save_boot_steps
- splash_exit
- ;;
-
- kill)
- if [ "$(fbcondecor_supported)" = "true" ]
- then
- stat_busy "Disabling fbcondecor console images"
- for TTY in ${SPLASH_TTYS}; do
- fbcondecor_remove_theme ${TTY}
- done
- stat_done
- fi
- ;;
-
- restart)
- $0 kill
- sleep 1
- $1 start
- ;;
-
- *)
- echo "usage: $0 {start|restart|kill}"
-esac
-exit 0
-
-#EOF
-