diff options
| author | Michael Brown | 2020-10-20 16:03:37 +0200 |
|---|---|---|
| committer | Michael Brown | 2020-10-20 16:05:37 +0200 |
| commit | 334f0074b1f50d522a701f79faf28dadbdc28362 (patch) | |
| tree | 5e88ede87f383e755e2925318414c185e061a084 /src/interface/efi | |
| parent | [aoe] Allow AoE device to be described using an EFI device path (diff) | |
| download | ipxe-334f0074b1f50d522a701f79faf28dadbdc28362.tar.gz ipxe-334f0074b1f50d522a701f79faf28dadbdc28362.tar.xz ipxe-334f0074b1f50d522a701f79faf28dadbdc28362.zip | |
[efi] Show block device ACPI table contents only at DBGLVL_EXTRA
The ACPI table contents are typically large and are likely to cause
any preceding error messages to scroll off-screen.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/interface/efi')
| -rw-r--r-- | src/interface/efi/efi_block.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interface/efi/efi_block.c b/src/interface/efi/efi_block.c index a63bc9ccf..fa37be9d3 100644 --- a/src/interface/efi/efi_block.c +++ b/src/interface/efi/efi_block.c @@ -450,17 +450,17 @@ static int efi_block_install ( struct acpi_header *hdr ) { rc = -EEFI ( efirc ); DBGC ( acpi, "EFIBLK could not install %s: %s\n", acpi_name ( hdr->signature ), strerror ( rc ) ); - DBGC_HDA ( acpi, 0, hdr, len ); + DBGC2_HDA ( acpi, 0, hdr, len ); goto err_install; } /* Add to list of installed tables */ list_add_tail ( &installed->list, &efi_acpi_tables ); - DBGC ( acpi, "EFIBLK installed %s as ACPI table %#lx:\n", + DBGC ( acpi, "EFIBLK installed %s as ACPI table %#lx\n", acpi_name ( hdr->signature ), ( ( unsigned long ) installed->key ) ); - DBGC_HDA ( acpi, 0, hdr, len ); + DBGC2_HDA ( acpi, 0, hdr, len ); return 0; list_del ( &installed->list ); |
