The branch main has been updated by tsoome:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=0974bfa3a8da2201b0a415e72593552f5ac59379

commit 0974bfa3a8da2201b0a415e72593552f5ac59379
Author:     Toomas Soome <[email protected]>
AuthorDate: 2021-01-15 12:58:12 +0000
Commit:     Toomas Soome <[email protected]>
CommitDate: 2021-01-15 13:43:14 +0000

    loader: do not update palette in text mode (real fix)
    
    Apparently palette update while in text mode, will cause
    some adapters to end up with blank display. Previous update had
    condition reversed.
---
 stand/i386/libi386/vidconsole.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stand/i386/libi386/vidconsole.c b/stand/i386/libi386/vidconsole.c
index b42a476ef85e..e17885cb7b0c 100644
--- a/stand/i386/libi386/vidconsole.c
+++ b/stand/i386/libi386/vidconsole.c
@@ -939,7 +939,7 @@ cons_update_mode(bool use_gfx_mode)
            gfx_state.tg_fb.fb_mask_green >> goff, goff,
            gfx_state.tg_fb.fb_mask_blue >> boff, boff);
 
-       if (gfx_state.tg_ctype == CT_INDEXED && !use_gfx_mode)
+       if (gfx_state.tg_ctype == CT_INDEXED && use_gfx_mode)
                vidc_load_palette();
 
        teken_set_winsize(&gfx_state.tg_teken, &gfx_state.tg_tp);
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to