pruning broken board

Signed-off-by: Ronald G Minnich <rminnich@gmail.com>
This commit is contained in:
Ronald G Minnich 2024-10-23 23:19:58 -07:00 committed by Daniel Maslowski
parent ddcd5e4e1f
commit 93c06bea54
2 changed files with 0 additions and 37 deletions

View File

@ -1,30 +0,0 @@
FROM golang:1.16.4-buster
LABEL description="Testing environment for Linuxboot in OVMF"
# Install dependencies
RUN apt update
RUN apt install -y \
acpica-tools \
bc \
bison \
build-essential \
cpio \
flex \
kmod \
libelf-dev \
libncurses5-dev \
libssl-dev \
nasm \
qemu-system \
uuid-dev
# Get the correct version of UTK
RUN git clone https://github.com/linuxboot/fiano /go/src/github.com/linuxboot/fiano
RUN cd /go/src/github.com/linuxboot/fiano/cmds/utk && git checkout v5.0.0 && GO111MODULE=off go install
# Working directory for mounting git repo in
RUN mkdir /linuxboot-ovmf
WORKDIR /linuxboot-ovmf
ENTRYPOINT ["/bin/bash"]

View File

@ -1,7 +0,0 @@
CONTAINER_NAME := linuxboot-ovmf
docker-build: Dockerfile
docker build -t $(CONTAINER_NAME) -f $< .
docker-run:
docker run --tty --interactive --rm --volume "$(shell pwd)":/$(CONTAINER_NAME) $(CONTAINER_NAME)