:: commit ca6d469dc229ff12a1b2846a0fdb3803742ed259

Mintsuki <mintsuki@protonmail.com> — 2026-03-30 17:45

parents: b29b11ce6d

lib/term: Do not call ClearScreen() on EFI fallback output init

diff --git a/common/lib/term.c b/common/lib/term.c
index c94c222f..e93d333e 100644
--- a/common/lib/term.c
+++ b/common/lib/term.c
@@ -238,7 +238,9 @@ void term_fallback(void) {
     if (!efi_boot_services_exited) {
 #endif
 
-        fallback_clear(NULL, true);
+        // XXX: Ideally we clear the screen, but that gets rid of the BGRT boot logo
+        // and is slow, so...
+        //fallback_clear(NULL, true);
 
         term->set_text_fg = (void *)dummy_handle;
         term->set_text_bg = (void *)dummy_handle;
tab: 248 wrap: offon