From 93c06bea540e6fed1c65bc884ceca5ecb002e48d Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/tianocore/ovmf/Dockerfile | 30 ---------------------------- mainboards/tianocore/ovmf/Makefile | 7 ------- 2 files changed, 37 deletions(-) delete mode 100644 mainboards/tianocore/ovmf/Dockerfile delete mode 100644 mainboards/tianocore/ovmf/Makefile diff --git a/mainboards/tianocore/ovmf/Dockerfile b/mainboards/tianocore/ovmf/Dockerfile deleted file mode 100644 index 8d8f041..0000000 --- a/mainboards/tianocore/ovmf/Dockerfile +++ /dev/null @@ -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"] diff --git a/mainboards/tianocore/ovmf/Makefile b/mainboards/tianocore/ovmf/Makefile deleted file mode 100644 index 47aa793..0000000 --- a/mainboards/tianocore/ovmf/Makefile +++ /dev/null @@ -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)