summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/splashy/splashy.initcpio_hook
diff options
context:
space:
mode:
authorCecil Hugh Watson <knoppmyth@gmail.com>2009-02-12 09:27:53 (GMT)
committerCecil Hugh Watson <knoppmyth@gmail.com>2009-02-12 09:27:53 (GMT)
commitd0b70872475b14313823cd5daf0246213dd00d6f (patch)
tree137a419d42daabcf5642dfb6e9f58ed6753ed3a5 /abs/core-testing/splashy/splashy.initcpio_hook
parent6930114f2534777e703bf19708dbd0b4c03507cc (diff)
downloadlinhes_pkgbuild-d0b70872475b14313823cd5daf0246213dd00d6f.zip
linhes_pkgbuild-d0b70872475b14313823cd5daf0246213dd00d6f.tar.gz
linhes_pkgbuild-d0b70872475b14313823cd5daf0246213dd00d6f.tar.bz2
Removed splashy.
Diffstat (limited to 'abs/core-testing/splashy/splashy.initcpio_hook')
-rwxr-xr-xabs/core-testing/splashy/splashy.initcpio_hook48
1 files changed, 0 insertions, 48 deletions
diff --git a/abs/core-testing/splashy/splashy.initcpio_hook b/abs/core-testing/splashy/splashy.initcpio_hook
deleted file mode 100755
index 5e960b9..0000000
--- a/abs/core-testing/splashy/splashy.initcpio_hook
+++ /dev/null
@@ -1,48 +0,0 @@
-# vim: set ft=sh:
-run_hook() {
- [ -x /sbin/splashy ] || return
-
- SPLASH=false
- SINGLE=false
-
- for x in $(cat /proc/cmdline); do
- case $x in
- single)
- SINGLE=true
- ;;
- splash)
- SPLASH=true
- ;;
- nosplash)
- SPLASH=false
- ;;
- esac
- done
-
- [ "${SINGLE}" = "false" ] || return
- [ "${SPLASH}" = "true" ] || return
-
-#if [ -s /proc/fb ]; then
-# while read fbno desc; do
-# mknod /dev/fb${fbno} c 29 ${fbno}
-# done < /proc/fb
-#else
-# mknod /dev/fb0 c 29 0
-#fi
-
-#for i in 0 1 2 3 4 5 6 7 8; do
-# test -c /dev/tty${i} || \
-# mknod /dev/tty${i} c 4 ${i}
-#done
-
- msg -n ":: Loading Splashy..."
-
- if [ -x /sbin/splashy_chvt ]; then
- /sbin/splashy_chvt 8
- fi
-
- /sbin/splashy boot
- sleep 1 #we need a better solution
-
- msg "done."
-}