Revision: 16846 http://sourceforge.net/p/edk2/code/16846 Author: zwei4 Date: 2015-02-13 02:13:03 +0000 (Fri, 13 Feb 2015) Log Message: ----------- Remove override to ConSplitter
Remove override to ConSplitter; Set console background to be black and front ground to be gray light. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: David Wei <david....@intel.com> Modified Paths: -------------- trunk/edk2/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c trunk/edk2/Vlv2TbltDevicePkg/PlatformPkg.fdf trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgGcc.fdf trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgX64.dsc Removed Paths: ------------- trunk/edk2/Vlv2TbltDevicePkg/Override/MdeModulePkg/ Modified: trunk/edk2/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c =================================================================== --- trunk/edk2/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c 2015-02-13 01:20:35 UTC (rev 16845) +++ trunk/edk2/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c 2015-02-13 02:13:03 UTC (rev 16846) @@ -1822,6 +1822,8 @@ return EFI_TIMEOUT; } + gST->ConOut->SetAttribute(gST->ConOut, EFI_TEXT_ATTR (EFI_LIGHTGRAY, EFI_BLACK)); + if (DebugAssertEnabled()) { DEBUG ((EFI_D_INFO, "\n\nStart showing progress bar... Press any key to stop it, or press <F2> or <DEL> to enter setup page! ...Zzz....\n")); Modified: trunk/edk2/Vlv2TbltDevicePkg/PlatformPkg.fdf =================================================================== --- trunk/edk2/Vlv2TbltDevicePkg/PlatformPkg.fdf 2015-02-13 01:20:35 UTC (rev 16845) +++ trunk/edk2/Vlv2TbltDevicePkg/PlatformPkg.fdf 2015-02-13 02:13:03 UTC (rev 16846) @@ -625,7 +625,7 @@ # Console # INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf -INF Vlv2TbltDevicePkg/Override/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf +INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf INF IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf Modified: trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgGcc.fdf =================================================================== --- trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgGcc.fdf 2015-02-13 01:20:35 UTC (rev 16845) +++ trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgGcc.fdf 2015-02-13 02:13:03 UTC (rev 16846) @@ -556,7 +556,7 @@ # Console # INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf -INF Vlv2TbltDevicePkg/Override/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf +INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf INF IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf Modified: trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc =================================================================== --- trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc 2015-02-13 01:20:35 UTC (rev 16845) +++ trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc 2015-02-13 02:13:03 UTC (rev 16846) @@ -1213,7 +1213,7 @@ # Console # MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf - Vlv2TbltDevicePkg/Override/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf + MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf Modified: trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc =================================================================== --- trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc 2015-02-13 01:20:35 UTC (rev 16845) +++ trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc 2015-02-13 02:13:03 UTC (rev 16846) @@ -1201,7 +1201,7 @@ # Console # MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf - Vlv2TbltDevicePkg/Override/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf + MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf Modified: trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgX64.dsc =================================================================== --- trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgX64.dsc 2015-02-13 01:20:35 UTC (rev 16845) +++ trunk/edk2/Vlv2TbltDevicePkg/PlatformPkgX64.dsc 2015-02-13 02:13:03 UTC (rev 16846) @@ -1201,7 +1201,7 @@ # Console # MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf - Vlv2TbltDevicePkg/Override/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf + MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf ------------------------------------------------------------------------------ Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ edk2-commits mailing list edk2-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/edk2-commits