diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2017-10-06 10:36:13 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-10-20 02:22:23 +0000 |
commit | fe84292eeb0ccc2b436d3c20c598aac0dec5d4fd (patch) | |
tree | bf83e18fd065cea4717be93038a4069449ffd26d /util | |
parent | 70b92456eb2f507b6d6ce24212219e7dfbb59747 (diff) | |
download | coreboot-fe84292eeb0ccc2b436d3c20c598aac0dec5d4fd.tar.xz |
board_status/towiki: Fix link to last report for "clone" boards
I noticed that the "last known good" field for the ThinkPad R400 pointed
nowhere. Instead of
https://www.coreboot.org/Supported_Motherboards#lenovo.2Ft400
it pointed to
https://www.coreboot.org/Supported_Motherboards#lenovo.2Fr400
which does not exist because if a board is marked as a "Clone of"
another one in board_info.txt, towiki uses the original board's reports
to derive the "last known good" date and color.
Change-Id: Ie235ca8e8691f49d041de7c5770eae77cdd444a7
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/21906
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util')
-rwxr-xr-x | util/board_status/to-wiki/towiki.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/board_status/to-wiki/towiki.sh b/util/board_status/to-wiki/towiki.sh index cf25cc2ff3..e8d2fb22fd 100755 --- a/util/board_status/to-wiki/towiki.sh +++ b/util/board_status/to-wiki/towiki.sh @@ -434,7 +434,7 @@ EOF lastgood_diff_hex="0${lastgood_diff_hex}" fi cell_bgcolor="#${lastgood_diff_hex}ff00" - echo "| style=\"background:${cell_bgcolor}\" | [[#$vendor/$board|$lastgood]]" + echo "| style=\"background:${cell_bgcolor}\" | [[#$venboard|$lastgood]]" fi echo "| $northbridge_nice" |