Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/27874
Change subject: docker/coreboot.org-status: provide html/head/body frame ......................................................................
docker/coreboot.org-status: provide html/head/body frame
This allows us to add encoding information.
Change-Id: Ic9a12a13f11fd22eeec96fbcca6b706312876b07 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- M util/docker/coreboot.org-status/board-status.html/tohtml.sh 1 file changed, 14 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/74/27874/1
diff --git a/util/docker/coreboot.org-status/board-status.html/tohtml.sh b/util/docker/coreboot.org-status/board-status.html/tohtml.sh index b1a7ccd..f786c33 100755 --- a/util/docker/coreboot.org-status/board-status.html/tohtml.sh +++ b/util/docker/coreboot.org-status/board-status.html/tohtml.sh @@ -3,6 +3,16 @@ export GIT_DIR="$COREBOOT_DIR/.git" CODE_GITWEB="https://review.coreboot.org/gitweb/cgit/coreboot.git/commit/?id=" STATUS_GITWEB="https://review.coreboot.org/gitweb/cgit/board-status.git/tree/" + +cat <<EOF +<html> +<head> + <meta charset="utf-8"> + <title>status report for coreboot boards</title> +</head> +<body> +EOF + if [ -f `dirname $0`/foreword.html ]; then cat `dirname $0`/foreword.html fi @@ -519,3 +529,7 @@
echo "$detailed" +cat <<EOF +</body> +</html> +EOF