summaryrefslogtreecommitdiff
path: root/pcr/plymouth/plymouth.initcpio_hook
diff options
context:
space:
mode:
authorDavid P <megver83@openmailbox.org>2017-03-22 09:45:03 -0300
committerDavid P <megver83@openmailbox.org>2017-03-22 09:45:03 -0300
commit3defeb00b3a0b379b87cb3674bc6065c17f36687 (patch)
treea0ff35b92acc63abe01c121532156ed911188b16 /pcr/plymouth/plymouth.initcpio_hook
parent238c65c7329b1ac2609d7a59ab82b3baa65ee442 (diff)
downloadabslibre-3defeb00b3a0b379b87cb3674bc6065c17f36687.tar.gz
abslibre-3defeb00b3a0b379b87cb3674bc6065c17f36687.tar.bz2
abslibre-3defeb00b3a0b379b87cb3674bc6065c17f36687.zip
Removed plymouth
Diffstat (limited to 'pcr/plymouth/plymouth.initcpio_hook')
-rw-r--r--pcr/plymouth/plymouth.initcpio_hook23
1 files changed, 0 insertions, 23 deletions
diff --git a/pcr/plymouth/plymouth.initcpio_hook b/pcr/plymouth/plymouth.initcpio_hook
deleted file mode 100644
index 3d7ec1d17..000000000
--- a/pcr/plymouth/plymouth.initcpio_hook
+++ /dev/null
@@ -1,23 +0,0 @@
-run_earlyhook(){
- # first trigger graphics subsystem
- udevadm trigger --action=add --attr-match=class=0x030000 >/dev/null 2>&1
- # first trigger graphics and tty subsystem
- udevadm trigger --action=add --subsystem-match=graphics --subsystem-match=drm --subsystem-match=tty >/dev/null 2>&1
-
- udevadm settle --timeout=30 2>&1
-
- /usr/bin/mknod /dev/fb c 29 &>/dev/null
- /usr/bin/mkdir -p /dev/pts
- /usr/bin/mount -t devpts -o noexec,nosuid,gid=5,mode=0620 devpts /dev/pts || true
- /usr/bin/plymouthd --mode=boot --pid-file=/run/plymouth/pid --attach-to-session
-}
-
-run_hook() {
- /usr/bin/plymouth --show-splash
-}
-
-run_latehook(){
- /usr/bin/plymouth update-root-fs --new-root-dir=/new_root
-}
-
-# vim: set ft=sh: