diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-19 00:37:23 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-19 02:18:33 +0100 |
commit | 2eaf3b4e3adbf95d358c83eb41378aabff193de5 (patch) | |
tree | ecb2f48c6cfd23fc6cd5e15e549009c36916ba85 /util | |
parent | 03cd8e5fa4a6667352e293b2673551e62a09ed11 (diff) |
boardstatus: Handle clones.
Change-Id: I7bfe19eb800729713a549dc0396765a9785e11b1
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/4732
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'util')
-rwxr-xr-x | util/board_status/to-wiki/towiki.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/board_status/to-wiki/towiki.sh b/util/board_status/to-wiki/towiki.sh index 02204df96d..e61b23ad1f 100755 --- a/util/board_status/to-wiki/towiki.sh +++ b/util/board_status/to-wiki/towiki.sh @@ -157,6 +157,7 @@ EOF vendor_cooperation_score="$(sed -n "/^[[:space:]]*Vendor cooperation score:/ s,^[[:space:]]*Vendor cooperation score:[[:space:]]*,,p" "$vendor_board_dir/board_info.txt")" vendor_cooperation_page="$(sed -n "/^[[:space:]]*Vendor cooperation page:/ s,^[[:space:]]*Vendor cooperation page:[[:space:]]*,,p" "$vendor_board_dir/board_info.txt")" board_url="$(sed -n "/^[[:space:]]*Board URL:/ s,^[[:space:]]*Board URL:[[:space:]]*,,p" "$vendor_board_dir/board_info.txt")" + clone_of="$(sed -n "/^[[:space:]]*Clone of:/ s,^[[:space:]]*Clone of:[[:space:]]*,,p" "$vendor_board_dir/board_info.txt")" else board_nice= rom_package= @@ -166,6 +167,7 @@ EOF vendor_cooperation_score= vendor_cooperation_page= board_url= + clone_of= fi if [ "$last_vendor" != "$vendor" ]; then last_vendor="$vendor" @@ -190,6 +192,10 @@ EOF lastgood="$(echo "$have"| sed -n "/^$vendor\/$board:/ s,^[^:]*:,,gp")" + if ! [ -z "$clone_of" ]; then + vendor_board_dir="$COREBOOT_DIR"/src/mainboard/"$clone_of"; + fi + northbridge="$(sed -n "/^[[:space:]]*select NORTHBRIDGE_/ s,^[[:space:]]*select NORTHBRIDGE_,,p" "$vendor_board_dir/Kconfig")" northbridge_nice="$(echo "$northbridge"|sed 's,AMD_AGESA_FAMILY\(.*\),AMD Family \1h (AGESA),g;s,AMD_FAMILY\(.*\),AMD Family \1h,g;s,AMD_AMDFAM\(.*\),AMD Family \1h,g;s,_, ,g;s,INTEL,IntelĀ®,g;')" |