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>
Reviewed-on: https://review.coreboot.org/27874
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Patrick Georgi 2018-08-06 17:27:13 +02:00 committed by Patrick Georgi
parent cac468c834
commit a5ac91c256
1 changed files with 14 additions and 0 deletions

View File

@ -3,6 +3,16 @@ export COREBOOT_DIR="../coreboot.git"
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 @@ EOF
echo "$detailed"
cat <<EOF
</body>
</html>
EOF