git: 0974bfa3a8da - main - loader: do not update palette in text mode (real fix)
Toomas Soome
tsoome at FreeBSD.org
Fri Jan 15 11:47:01 UTC 2021
The branch main has been updated by tsoome:
URL: https://cgit.FreeBSD.org/src/commit/?id=0974bfa3a8da2201b0a415e72593552f5ac59379
commit 0974bfa3a8da2201b0a415e72593552f5ac59379
Author: Toomas Soome <tsoome at FreeBSD.org>
AuthorDate: 2021-01-15 12:58:12 +0000
Commit: Toomas Soome <tsoome at FreeBSD.org>
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);
More information about the dev-commits-src-main
mailing list