diff options
Diffstat (limited to 'README.md')
-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 |