summaryrefslogtreecommitdiff
path: root/pcr/plymouth-nosystemd/plymouth.initcpio_hook
diff options
context:
space:
mode:
authorChristopher Davis <brainblasted@disroot.org>2018-07-10 21:27:21 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-07-16 16:28:53 -0400
commita118209987c97f5f1675df9a565188980c7c2dfb (patch)
tree6ee8d99af500cf1cf779d10c56c1cbcef6255b7e /pcr/plymouth-nosystemd/plymouth.initcpio_hook
parent41111562407b4951c47f6fb2f926dedf13f302ab (diff)
downloadabslibre-a118209987c97f5f1675df9a565188980c7c2dfb.tar.gz
abslibre-a118209987c97f5f1675df9a565188980c7c2dfb.tar.bz2
abslibre-a118209987c97f5f1675df9a565188980c7c2dfb.zip
pcr/plymouth{,-nosystemd}: Merge, fixup
Diffstat (limited to 'pcr/plymouth-nosystemd/plymouth.initcpio_hook')
-rw-r--r--pcr/plymouth-nosystemd/plymouth.initcpio_hook23
1 files changed, 0 insertions, 23 deletions
diff --git a/pcr/plymouth-nosystemd/plymouth.initcpio_hook b/pcr/plymouth-nosystemd/plymouth.initcpio_hook
deleted file mode 100644
index 3d7ec1d17..000000000
--- a/pcr/plymouth-nosystemd/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: