diff options
author | Rose Hellsing <rose@pinkro.se> | 2025-09-08 12:30:58 +0200 |
---|---|---|
committer | Rose Hellsing <rose@pinkro.se> | 2025-09-08 12:30:58 +0200 |
commit | f1e24d45fa3aff49741c69eeca384108a386b8bf (patch) | |
tree | d63a10a03b09d8df61bee67b485d9bc6a81bcf2b /README.md | |
download | logo-patches-main.tar.gz logo-patches-main.tar.bz2 |
Diffstat (limited to '')
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..f6b09b6 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Linux Logo Patches +This repository contains patches to add support for custom splash logos in the boot screen. + +To apply the patches download the one for the relevant kernel version and apply it with `git am` or whatever method is most convenient. + +An image that the kernel accepts can be generated like this: +``` +magick logo.png logo.ppm +ppmquant 224 logo.ppm > logo_224.ppm +pnmnoraw splash_224.ppm > logo_ascii_224.ppm +``` + +Then simply copy `logo_ascii_224.ppm` to `drivers/video/logo/logo_custom_clut224.ppm` + +Don't forget to set `LOGO_CUSTOM=y` in the kernel configuration |