summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJani Nikula <jani.nikula@intel.com>2017-01-24 12:07:01 +0200
committerJani Nikula <jani.nikula@intel.com>2017-01-30 09:55:18 +0200
commit56cbe6b2f7654dc80ee4c8ffbf46a3c437459827 (patch)
treeef14a59a73d509eb66e86a1036be0f8bf90d82d8 /tools
parentcb55d6c9e69161fdb217d32b660f13d280a711af (diff)
intel_bios_reader: be more informative about unknown blocks
We don't know how to decode all blocks, make it clear this is not an error. Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/intel_bios_reader.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/intel_bios_reader.c b/tools/intel_bios_reader.c
index 9f75d850..6581abf5 100644
--- a/tools/intel_bios_reader.c
+++ b/tools/intel_bios_reader.c
@@ -1634,7 +1634,8 @@ static bool dump_section(struct context *context, int section_id)
if (dumper && dumper->name)
printf("BDB block %d - %s:\n", block->id, dumper->name);
else
- printf("BDB block %d:\n", block->id);
+ printf("BDB block %d - Unknown, no decoding available:\n",
+ block->id);
if (context->hexdump)
hex_dump_block(block);