From: Michael Brown Date: Thu, 22 Jun 2023 22:20:37 +0000 (+0100) Subject: [efi] Show manufacturer in veto debug output X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9a118322a025986b350343daf9d55882d3238327;p=thirdparty%2Fipxe.git [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 --- 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++ ) {