diff options
| author | Nathan Harris <nharris@eoimaging.com> | 2009-02-11 19:42:03 (GMT) |
|---|---|---|
| committer | Nathan Harris <nharris@eoimaging.com> | 2009-02-11 19:42:03 (GMT) |
| commit | 9bbbabaae4af2dfeac1f9d00050e358b56ac5fa7 (patch) | |
| tree | d73b42272daefa2b6971bf8763ed5568c1a173ea /abs/core-testing/splashy/splashy.initcpio_hook | |
| parent | 6f5e266635707da88c03920427347575383e0fc2 (diff) | |
| parent | 09b14aa48e621e4263c095769bbd2697893eef8d (diff) | |
| download | linhes_pkgbuild-9bbbabaae4af2dfeac1f9d00050e358b56ac5fa7.zip linhes_pkgbuild-9bbbabaae4af2dfeac1f9d00050e358b56ac5fa7.tar.gz linhes_pkgbuild-9bbbabaae4af2dfeac1f9d00050e358b56ac5fa7.tar.bz2 | |
Merge branch 'master' of nharris@knoppmyth.net:LinHES-PKGBUILD
Diffstat (limited to 'abs/core-testing/splashy/splashy.initcpio_hook')
| -rwxr-xr-x | abs/core-testing/splashy/splashy.initcpio_hook | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/abs/core-testing/splashy/splashy.initcpio_hook b/abs/core-testing/splashy/splashy.initcpio_hook new file mode 100755 index 0000000..5e960b9 --- /dev/null +++ b/abs/core-testing/splashy/splashy.initcpio_hook @@ -0,0 +1,48 @@ +# 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." +} |
