0006-i-made-it-purple.patch 976 B

12345678910111213141516171819202122232425262728293031323334
  1. From 9c1ceb5a5b302275da146149001f4210a1d7fc86 Mon Sep 17 00:00:00 2001
  2. From: Leah Rowe <info@minifree.org>
  3. Date: Wed, 4 Dec 2024 20:13:42 +0000
  4. Subject: [PATCH 1/1] i made it purple
  5. Signed-off-by: Leah Rowe <info@minifree.org>
  6. ---
  7. boot/expo.c | 7 ++-----
  8. 1 file changed, 2 insertions(+), 5 deletions(-)
  9. diff --git a/boot/expo.c b/boot/expo.c
  10. index ed01483f1d..04726d1c9a 100644
  11. --- a/boot/expo.c
  12. +++ b/boot/expo.c
  13. @@ -189,13 +189,10 @@ int expo_render(struct expo *exp)
  14. struct udevice *dev = exp->display;
  15. struct video_priv *vid_priv = dev_get_uclass_priv(dev);
  16. struct scene *scn = NULL;
  17. - enum colour_idx back;
  18. - u32 colour;
  19. int ret;
  20. - back = CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK) ? VID_BLACK : VID_WHITE;
  21. - colour = video_index_to_colour(vid_priv, back);
  22. - ret = video_fill(dev, colour);
  23. + /* sexy libreboot purple background */
  24. + ret = video_fill(dev, 0x280b22); /* #280b22 in HTML RGB notation */
  25. if (ret)
  26. return log_msg_ret("fill", ret);
  27. --
  28. 2.39.5