Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Sep 2019 19:30:23 +0000 (UTC)
From:      Toomas Soome <tsoome@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r351959 - head/stand/efi/libefi
Message-ID:  <201909061930.x86JUN5x062129@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tsoome
Date: Fri Sep  6 19:30:23 2019
New Revision: 351959
URL: https://svnweb.freebsd.org/changeset/base/351959

Log:
  loader.efi: UEFI text mode background colors are only using 3 bits
  
  Need to mask background colors to pass allowed value.

Modified:
  head/stand/efi/libefi/efi_console.c

Modified: head/stand/efi/libefi/efi_console.c
==============================================================================
--- head/stand/efi/libefi/efi_console.c	Fri Sep  6 19:29:02 2019	(r351958)
+++ head/stand/efi/libefi/efi_console.c	Fri Sep  6 19:30:23 2019	(r351959)
@@ -159,7 +159,7 @@ efi_text_printchar(const teken_pos_t *p)
 	}
 
 	attr = EFI_TEXT_ATTR(teken_color_to_efi_color[fg],
-	    teken_color_to_efi_color[bg]);
+	    teken_color_to_efi_color[bg] & 0x7);
 
 	conout->SetCursorPosition(conout, p->tp_col, p->tp_row);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909061930.x86JUN5x062129>