0003-x86-Avoid-clearing-the-VESA-display.patch 894 B

123456789101112131415161718192021222324252627282930
  1. From d098961a91c8f410f50ae31e60300c0ef1f67075 Mon Sep 17 00:00:00 2001
  2. From: Simon Glass <sjg@chromium.org>
  3. Date: Tue, 12 Nov 2024 06:59:06 -0700
  4. Subject: [PATCH 2/2] x86: Drop the message about features missing in 64-bit
  5. This functions normally and has done for a while, so drop this scary
  6. message.
  7. Signed-off-by: Simon Glass <sjg@chromium.org>
  8. ---
  9. arch/x86/lib/spl.c | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c
  12. index f761fbc8bc..656f59ede0 100644
  13. --- a/arch/x86/lib/spl.c
  14. +++ b/arch/x86/lib/spl.c
  15. @@ -283,7 +283,7 @@ void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
  16. {
  17. int ret;
  18. - printf("Jumping to 64-bit U-Boot: Note many features are missing\n");
  19. + log_debug("Jumping to 64-bit U-Boot\n");
  20. ret = cpu_jump_to_64bit_uboot(spl_image->entry_point);
  21. debug("ret=%d\n", ret);
  22. hang();
  23. --
  24. 2.39.5