mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-21 07:42:25 +00:00
pruning broken board
Signed-off-by: Ronald G Minnich <rminnich@gmail.com>
This commit is contained in:
parent
ddcd5e4e1f
commit
93c06bea54
@ -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"]
|
@ -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)
|
Loading…
Reference in New Issue
Block a user