1config BR2_PACKAGE_PSPLASH 2 bool "psplash" 3 depends on BR2_USE_WCHAR 4 help 5 PSplash is a userspace graphical boot splash screen for 6 mainly embedded Linux devices supporting a 16bpp or 32bpp 7 framebuffer. It has few dependencies (just libc), supports 8 basic images and text and handles rotation. Its visual look 9 is configurable by basic source changes. 10 11 Also included is a 'client' command utility for sending 12 information to psplash such as boot progress information. 13 14 Start the drawing process with 'psplash -n&' as early as 15 possible. Note: psplash creates a FIFO in /tmp for 16 communication with psplash-write. 17 18 Usage: 19 * Set progress bar to 50 percent: 20 psplash-write "PROGRESS 50" 21 22 * Display message "foobar" above progress bar: 23 psplash-write "MSG foobar" 24 25 * Terminate psplash: 26 psplash-write "QUIT" 27 28 http://git.yoctoproject.org/cgit/cgit.cgi/psplash/ 29 30if BR2_PACKAGE_PSPLASH 31 32config BR2_PACKAGE_PSPLASH_IMAGE 33 string "psplash image" 34 help 35 Use a personalized png image as boot splash. 36 Let it empty if you want to keep the psplash default image. 37 38endif 39 40comment "psplash needs a toolchain w/ wchar" 41 depends on !BR2_USE_WCHAR 42