board-status: one-line reports, with links to per-board pages

Make boards take less vertical space, and link to board pages

Change-Id: Ifdd062a15191809b75422416c874161d9114363d
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/4493
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
Patrick Georgi 2013-12-07 10:44:52 +01:00
parent 2267658db4
commit 87932c027e
1 changed files with 4 additions and 3 deletions

View File

@ -16,11 +16,12 @@ while read line; do
datetime_human=`LC_ALL=C TZ=UTC date --date="$datetime"`
upstream=`grep "^Upstream revision:" $vendor_board/$commit/$datetime/revision.txt |cut -d: -f2-`
upstream=`git log -1 --format=%H $upstream`
echo $vendor_board at $datetime_human
echo "[$CODE_GITWEB$upstream upstream tree]"
echo "[[Board:$vendor_board|$vendor_board]] at $datetime_human"
echo "[$CODE_GITWEB$upstream upstream tree] ("
ls $vendor_board/$commit/$datetime/* |grep -v '/revision.txt$' | while read file; do
echo "* [$STATUS_GITWEB$file `basename $file`]"
echo "[$STATUS_GITWEB$file `basename $file`] "
done
echo ")"
echo
done
done