/init/plymouth.conf

http://github.com/brinkman83/bashrc · Config · 34 lines · 28 code · 6 blank · 0 comment · 0 complexity · a0352db1159bc9f4322170dd78cd1dae MD5 · raw file

  1. # plymouth - Userspace bootsplash utility
  2. #
  3. # plymouth provides a boot splash screen on the system console using
  4. # the kernel framebuffer device. On boot, this is nominally started by
  5. # the initramfs so the pre-start script, script and post-start script
  6. # parts are actually not run. These are normally run on shutdown instead.
  7. description "Userspace bootsplash utility"
  8. start on (starting mountall
  9. or (runlevel [016]
  10. and (stopped gdm
  11. or stopped kdm
  12. or stopped xdm
  13. or stopped lxdm)))
  14. expect fork
  15. kill timeout 60
  16. script
  17. if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then
  18. exec /sbin/plymouthd --mode=shutdown
  19. else
  20. exec /sbin/plymouthd --mode=boot --attach-to-session
  21. fi
  22. end script
  23. post-start script
  24. if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then
  25. exec /bin/plymouth show-splash
  26. fi
  27. end script
  28. pre-stop exec /bin/plymouth quit