diff options
author | Peter Stuge <peter@stuge.se> | 2008-07-02 00:59:29 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2008-07-02 00:59:29 +0000 |
commit | 39a582569a16b42588c69dc2b670d4b27cf71ee2 (patch) | |
tree | 6585a67dfa9e9a4769d6a52630a7f24a02986433 | |
parent | 12224acb6f1e50f5ad848c433c1269244d3d03ad (diff) | |
download | coreboot-39a582569a16b42588c69dc2b670d4b27cf71ee2.tar.xz |
flashrom: Unknown vendor:board message can be triggered by -m too
Thanks to Stefan for pointing this one out.
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3403 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | util/flashrom/board_enable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/flashrom/board_enable.c b/util/flashrom/board_enable.c index e28a3f32c3..c236768c7d 100644 --- a/util/flashrom/board_enable.c +++ b/util/flashrom/board_enable.c @@ -678,7 +678,7 @@ static struct board_pciid_enable *board_match_coreboot_name(const char *vendor, if (partmatch) return partmatch; - printf("\nUnknown vendor:board in coreboot table: %s:%s\n\n", vendor, part); + printf("\nUnknown vendor:board from coreboot table or -m option: %s:%s\n\n", vendor, part); return NULL; } |