From 9a118322a025986b350343daf9d55882d3238327 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 22 Jun 2023 23:20:37 +0100 Subject: [efi] Show manufacturer in veto debug output Simplify the process of adding new entries to the veto list by including the manufacturer name within the standard debug output. Signed-off-by: Michael Brown --- src/interface/efi/efi_veto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interface/efi/efi_veto.c b/src/interface/efi/efi_veto.c index 19e529af6..e4791272b 100644 --- a/src/interface/efi/efi_veto.c +++ b/src/interface/efi/efi_veto.c @@ -617,6 +617,7 @@ void efi_veto ( void ) { /* Get manufacturer name */ fetch_string_setting_copy ( NULL, &manufacturer_setting, &manufacturer ); + DBGC ( &efi_vetoes, "EFIVETO manufacturer is \"%s\"\n", manufacturer ); /* Unload any vetoed drivers */ for ( i = 0 ; i < num_drivers ; i++ ) { -- cgit