Module Name: src
Committed By: jmcneill
Date: Sat Apr 20 11:23:16 UTC 2019
Modified Files:
src/sys/stand/efiboot: efiboot.c
Log Message:
Skip clearing the screen when efiboot starts, it may end up hiding useful
information
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/stand/efiboot/efiboot.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/stand/efiboot/efiboot.c
diff -u src/sys/stand/efiboot/efiboot.c:1.14 src/sys/stand/efiboot/efiboot.c:1.15
--- src/sys/stand/efiboot/efiboot.c:1.14 Wed Apr 10 19:11:42 2019
+++ src/sys/stand/efiboot/efiboot.c Sat Apr 20 11:23:16 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: efiboot.c,v 1.14 2019/04/10 19:11:42 skrll Exp $ */
+/* $NetBSD: efiboot.c,v 1.15 2019/04/20 11:23:16 jmcneill Exp $ */
/*-
* Copyright (c) 2018 Jared McNeill <[email protected]>
@@ -67,8 +67,6 @@ efi_main(EFI_HANDLE imageHandle, EFI_SYS
InitializeLib(imageHandle, systemTable);
(void)uefi_call_wrapper(ST->ConOut->Reset, 2, ST->ConOut, FALSE);
- if (ST->ConOut->ClearScreen)
- (void)uefi_call_wrapper(ST->ConOut->ClearScreen, 1, ST->ConOut);
status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateAnyPages, EfiLoaderData, sz, &heap_start);
if (EFI_ERROR(status))