Skip to content

Commit

Permalink
board-status: one-line reports, with links to per-board pages
Browse files Browse the repository at this point in the history
Make boards take less vertical space, and link to board pages

Change-Id: Ifdd062a15191809b75422416c874161d9114363d
Signed-off-by: Patrick Georgi <[email protected]>
Reviewed-on: http://review.coreboot.org/4493
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <[email protected]>
  • Loading branch information
pgeorgi committed Dec 7, 2013
1 parent 2267658 commit 87932c0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions util/board_status/to-wiki/towiki.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 87932c0

Please sign in to comment.