This patch fixes the component layout of the simple-framebuffer device so that it shows correct colors. Without this, the background highlight was red instead of blue, characteristic of the color components being in reverse. Index: sys/dev/fdt/simplefb.c =================================================================== RCS file: /cvs/src/sys/dev/fdt/simplefb.c,v retrieving revision 1.15 diff -u -p -u -p -r1.15 simplefb.c --- sys/dev/fdt/simplefb.c 9 Jan 2022 05:42:37 -0000 1.15 +++ sys/dev/fdt/simplefb.c 19 Feb 2022 13:40:10 -0000 @@ -47,7 +47,7 @@ struct simplefb_format { * rasops defaults. */ struct simplefb_format simplefb_formats[] = { - { "r5g6b5", 16 }, + { "r5g6b5", 16, 11, 5, 5, 6, 0, 5 }, { "x1r5g5b5", 15 }, { "a1r5g5b5", 15 }, { "r8g8b8", 24 },