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:
parent
cac468c834
commit
a5ac91c256
|
@ -3,6 +3,16 @@ export COREBOOT_DIR="../coreboot.git"
|
||||||
export GIT_DIR="$COREBOOT_DIR/.git"
|
export GIT_DIR="$COREBOOT_DIR/.git"
|
||||||
CODE_GITWEB="https://review.coreboot.org/gitweb/cgit/coreboot.git/commit/?id="
|
CODE_GITWEB="https://review.coreboot.org/gitweb/cgit/coreboot.git/commit/?id="
|
||||||
STATUS_GITWEB="https://review.coreboot.org/gitweb/cgit/board-status.git/tree/"
|
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
|
if [ -f `dirname $0`/foreword.html ]; then
|
||||||
cat `dirname $0`/foreword.html
|
cat `dirname $0`/foreword.html
|
||||||
fi
|
fi
|
||||||
|
@ -519,3 +529,7 @@ EOF
|
||||||
|
|
||||||
|
|
||||||
echo "$detailed"
|
echo "$detailed"
|
||||||
|
cat <<EOF
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
EOF
|
||||||
|
|
Loading…
Reference in New Issue