summaryrefslogtreecommitdiffstats
path: root/abs/core/plymouth/plymouth.initcpio_hook
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-11-22 05:27:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-11-22 05:27:40 (GMT)
commit30c6b3e359d4e8872a0ce6635593f362218c2511 (patch)
treec8517d4961b86e61021ae4dd1acec19ee21bf2af /abs/core/plymouth/plymouth.initcpio_hook
parent3d7f516c0b10ed95e270575ef6155d70c0c16114 (diff)
downloadlinhes_pkgbuild-30c6b3e359d4e8872a0ce6635593f362218c2511.zip
linhes_pkgbuild-30c6b3e359d4e8872a0ce6635593f362218c2511.tar.gz
linhes_pkgbuild-30c6b3e359d4e8872a0ce6635593f362218c2511.tar.bz2
plymouth: first build
refs #869
Diffstat (limited to 'abs/core/plymouth/plymouth.initcpio_hook')
-rw-r--r--abs/core/plymouth/plymouth.initcpio_hook16
1 files changed, 16 insertions, 0 deletions
diff --git a/abs/core/plymouth/plymouth.initcpio_hook b/abs/core/plymouth/plymouth.initcpio_hook
new file mode 100644
index 0000000..d527f24
--- /dev/null
+++ b/abs/core/plymouth/plymouth.initcpio_hook
@@ -0,0 +1,16 @@
+run_hook() {
+ msg -n ":: Loading plymouth..."
+
+ /bin/mknod /dev/fb c 29 0 &>/dev/null
+ #/bin/mount devpts /dev/pts -t devpts
+
+ # plymouth deamon
+ #/bin/mkdir -p /run/plymouth
+ /usr/sbin/plymouthd --mode=boot --pid-file=/run/plymouth.pid
+
+ # plymouth frontend
+ /usr/bin/plymouth --show-splash
+ msg "done."
+}
+
+# vim: set ft=sh: