diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2018-01-24 16:36:09 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-02-06 15:29:30 +0000 |
commit | 179a9048ddd1f45aa80865eb07a793394c6152e5 (patch) | |
tree | 6ae16cf9dabbd2d6c93b5538b95488ab2b044535 /util | |
parent | ddb4dcab8a6e08364d30b671dbd60c5c9ce71db7 (diff) |
nvramtool: Fix message when option table is not found
Having an option table pertains to CONFIG_USE_OPTION_TABLE.
Change-Id: Ia8a84e3e59ee50444c7f7d17b34bea86ee475909
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/23410
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util')
-rw-r--r-- | util/nvramtool/accessors/layout-bin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/nvramtool/accessors/layout-bin.c b/util/nvramtool/accessors/layout-bin.c index e545dc51a7..8cf29d8fa7 100644 --- a/util/nvramtool/accessors/layout-bin.c +++ b/util/nvramtool/accessors/layout-bin.c @@ -73,7 +73,7 @@ void process_layout(void) fprintf(stderr, "%s: CMOS option table not found in coreboot table. " "Apparently, the coreboot installed on this system was " - "built without specifying CONFIG_HAVE_OPTION_TABLE.\n", + "built without selecting CONFIG_USE_OPTION_TABLE.\n", prog_name); exit(1); } |