aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2023-06-22 23:20:37 +0100
committerMichael Brown <mcb30@ipxe.org>2023-06-22 23:20:37 +0100
commit9a118322a025986b350343daf9d55882d3238327 (patch)
tree7011ff7c6055ac41d9c309e614731a452e8ae3d7
parent2689a6e77668bc7bd0cf486fa7e4d733c5069bd9 (diff)
downloadipxe-9a118322a025986b350343daf9d55882d3238327.zip
ipxe-9a118322a025986b350343daf9d55882d3238327.tar.gz
ipxe-9a118322a025986b350343daf9d55882d3238327.tar.bz2
[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 <mcb30@ipxe.org>
-rw-r--r--src/interface/efi/efi_veto.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interface/efi/efi_veto.c b/src/interface/efi/efi_veto.c
index 19e529a..e479127 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++ ) {