Skip to content

Commit

Permalink
In compliance with request
Browse files Browse the repository at this point in the history
rhboot#326 (comment)
as reviewed from https://github.com/THS-on:
- New certificate (CA, keyUsage and extendedKeyUsage)
- smoe updates to Dockerfile

	deleted:    10ZiG_SecureBoot2023.der
	new file:   10ZiG_SecureBootCA_RootCA.der
	modified:   Dockerfile
	modified:   build.log
	modified:   shimx64.efi
  • Loading branch information
ClaudioGranatiero-10zig committed Oct 6, 2023
1 parent d4d1e59 commit 560ee76
Show file tree
Hide file tree
Showing 5 changed files with 586 additions and 272 deletions.
Binary file removed 10ZiG_SecureBoot2023.der
Binary file not shown.
Binary file added 10ZiG_SecureBootCA_RootCA.der
Binary file not shown.
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
# v1f
FROM debian:bullseye
ARG CERT_FILE="10ZiG_SecureBoot2023.der"
ARG CERT_FILE="10ZiG_SecureBootCA_RootCA.der"

env DEBIAN_FRONTEND=noninteractive

# dependencies
RUN apt-get -y -qq update
RUN apt-get -y -qq install gcc make bzip2 efitools curl wget git
RUN apt-get update -y

RUN apt-get install -y ca-certificates openssl coreutils bash tar xz-utils sed diffutils patch pesign libelf-dev binutils-x86-64-linux-gnu gcc make bzip2 efitools curl wget git
#
# clone shim
WORKDIR /build
RUN mkdir -p /build/patches
COPY patches /build/patches

RUN wget https://github.com/rhboot/shim/releases/download/15.7/shim-15.7.tar.bz2
RUN wget --no-check-certificate https://github.com/rhboot/shim/releases/download/15.7/shim-15.7.tar.bz2
RUN tar jxf shim-15.7.tar.bz2
WORKDIR /build/shim-15.7

Expand Down
Loading

0 comments on commit 560ee76

Please sign in to comment.