79d26c7a83
Move generators for the board status report and the kconfig options report into a common directory and wrap them in a docker container. Also rework to emit HTML not wiki syntax. Change-Id: If42e1dd312c5fa4e32f519865e3b551bc471bc72 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/26977 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
7 lines
174 B
Docker
7 lines
174 B
Docker
FROM debian:sid
|
|
|
|
RUN apt-get update && apt-get install -y python git bc && apt-get clean
|
|
|
|
ADD board-status.html kconfig2html run.sh /opt/tools/
|
|
|
|
ENTRYPOINT /opt/tools/run.sh
|