From 08c372f460292434926af7651c91759af9df428a Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Sun, 19 Jan 2014 14:44:04 +0100 Subject: boardstatus: Do not error out on unknown CPU/northbridge On bot, stderr is unmonitored, so it make no sense to stop with an error. Instead use some sensible guesses. Change-Id: I6292e9fbf446b751471b95f86e7515c6680bddf3 Signed-off-by: Vladimir Serbinenko Reviewed-on: http://review.coreboot.org/4748 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc --- util/board_status/to-wiki/towiki.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'util/board_status/to-wiki/towiki.sh') diff --git a/util/board_status/to-wiki/towiki.sh b/util/board_status/to-wiki/towiki.sh index c174527403..fd0dcf0b8c 100755 --- a/util/board_status/to-wiki/towiki.sh +++ b/util/board_status/to-wiki/towiki.sh @@ -317,8 +317,8 @@ EOF cpu_nice="IntelĀ® 2nd Gen (Sandybridge) Core i3/i5/i7" socket_nice="Socket RPGA989";; *) - echo "unknown northbridge $northbridge" >&2; - exit 1;; + cpu_nice="$northbridge" + socket_nice="$northbridge";; esac ;; INTEL_SOCKET_441) @@ -366,13 +366,13 @@ EOF cpu_nice="?" socket_nice="?";; *) - echo "unknown northbridge $northbridge ($vendor/$board)" >&2; - exit 1;; + cpu_nice="$northbridge" + socket_nice="$northbridge";; esac ;; *) - echo "unknown CPU $cpu" >&2; - exit 1;; + cpu_nice="$cpu" + socket_nice="$cpu";; esac echo "|- bgcolor=\"#$color\"" -- cgit v1.2.3