This package provides a tool to configure and setup the fullscreen splash screen for Raspberry Pi OS.
This splash image is drawn early in the boot process. This tool will configure the kernel to show a fullscreen splash image at boot time, instead of the default four raspberries.
Upon operation, the only thing that should be drawn to the display will be the splash image, followed by whatever application overwrites it next (e.g. desktop, login console, etc).
- A 24-bit TGA image
- Image dimensions of 1920x1080px or smaller
- Image must contain at most 224 colours
An example command to generate an image from a PNG file, to meet the requirements is given below.
convert logo.png -flip -colors 224 -depth 8 -type TrueColor -alpha off -compress none -define tga:bits-per-sample=8 logo.tgaTo install the package, run the following command:
sudo apt install rpi-splash-screen-supportTo configure the splash screen, run the following command, replacing <splash-image> with the path of the image file to use. This path can be relative or absolute.
sudo configure-splash <splash-image>This will provide the necessary changes to the kernel to enable the splash screen.
dpkg-buildpackage -us -uc