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)
This commit is contained in:
parent
14a703045d
commit
047c10c0f8
|
@ -0,0 +1,2 @@
|
|||
Category: sbc
|
||||
|
|
@ -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
|
||||
;;
|
||||
|
@ -106,6 +106,13 @@ EOF
|
|||
|- bgcolor="#6699ff"
|
||||
| colspan="13" | <h4>Devel/Eval Boards</h4>
|
||||
|
||||
EOF
|
||||
;;
|
||||
sbc)
|
||||
cat <<EOF
|
||||
|- bgcolor="#6699ff"
|
||||
| colspan="13" | <h4>Single-Board computer</h4>
|
||||
|
||||
EOF
|
||||
;;
|
||||
emulation)
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue