diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-19 02:56:48 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-19 03:20:08 +0100 |
commit | 047c10c0f8537bbae5749292a5036ac71314a312 (patch) | |
tree | f0915ee252ba98f7ccdd4268a68f50fae8b6fccc /util/board_status | |
parent | 14a703045dc4930158e9b0535c30424c51491825 (diff) |
boardstatus: Add new category "sbc".
Change-Id: I8a7bf265ebb30dd5997f93729a0329e74f463a23
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/4739
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'util/board_status')
-rwxr-xr-x | util/board_status/to-wiki/towiki.sh | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/util/board_status/to-wiki/towiki.sh b/util/board_status/to-wiki/towiki.sh index 5a5f75ef04..e2fc610228 100755 --- a/util/board_status/to-wiki/towiki.sh +++ b/util/board_status/to-wiki/towiki.sh @@ -55,7 +55,7 @@ cat <<EOF ! align="left" | <span title="Vendor Cooperation Score">VCS<sup>5</sup></span> EOF -for category in desktop server laptop half mini settop "eval" emulation misc unclass; do +for category in desktop server laptop half mini settop "eval" sbc emulation misc unclass; do last_vendor= color=eeeeee case "$category" in @@ -83,7 +83,7 @@ EOF half) cat <<EOF |- bgcolor="#6699ff" -| colspan="13" | <h4>Embedded / SBC / PC/104 / Half-size boards</h4> +| colspan="13" | <h4>Embedded / PC/104 / Half-size boards</h4> EOF ;; @@ -108,6 +108,13 @@ EOF EOF ;; + sbc) + cat <<EOF +|- bgcolor="#6699ff" +| colspan="13" | <h4>Single-Board computer</h4> + +EOF + ;; emulation) cat <<EOF |- bgcolor="#6699ff" @@ -145,7 +152,7 @@ EOF fi case "$cur_category" in - desktop|server|laptop|half|mini|settop|"eval"|emulation|misc) + desktop|server|laptop|half|mini|settop|"eval"|emulation|sbc|misc) ;; *) cur_category=unclass |