diff options
author | David P <megver83@openmailbox.org> | 2017-03-22 11:16:44 -0300 |
---|---|---|
committer | David P <megver83@openmailbox.org> | 2017-03-22 11:16:44 -0300 |
commit | ede2e3a6d5cd78a6b5291afc47d515301023e7cb (patch) | |
tree | ff0c77aabadff2eae758292f23990a75e1db41e7 /pcr/plymouth-nosystemd/plymouth.initcpio_hook | |
parent | 8222e4f10d701a4a52c62f95de3573d1c904d249 (diff) | |
download | abslibre-ede2e3a6d5cd78a6b5291afc47d515301023e7cb.tar.gz abslibre-ede2e3a6d5cd78a6b5291afc47d515301023e7cb.tar.bz2 abslibre-ede2e3a6d5cd78a6b5291afc47d515301023e7cb.zip |
Added plymouth-nosystemd
Diffstat (limited to 'pcr/plymouth-nosystemd/plymouth.initcpio_hook')
-rw-r--r-- | pcr/plymouth-nosystemd/plymouth.initcpio_hook | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pcr/plymouth-nosystemd/plymouth.initcpio_hook b/pcr/plymouth-nosystemd/plymouth.initcpio_hook new file mode 100644 index 000000000..3d7ec1d17 --- /dev/null +++ b/pcr/plymouth-nosystemd/plymouth.initcpio_hook @@ -0,0 +1,23 @@ +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: |