diff options
author | Michael Brown <mcb30@ipxe.org> | 2023-06-22 23:20:37 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2023-06-22 23:20:37 +0100 |
commit | 9a118322a025986b350343daf9d55882d3238327 (patch) | |
tree | 7011ff7c6055ac41d9c309e614731a452e8ae3d7 | |
parent | 2689a6e77668bc7bd0cf486fa7e4d733c5069bd9 (diff) | |
download | ipxe-9a118322a025986b350343daf9d55882d3238327.tar.gz |
[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.c | 1 |
1 files changed, 1 insertions, 0 deletions
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++ ) { |