diff mbox series

Dockerfile: Add libgnutls package for building mkeficapsule command

Message ID 20220201013236.63240-1-takahiro.akashi@linaro.org
State New
Headers show
Series Dockerfile: Add libgnutls package for building mkeficapsule command | expand

Commit Message

AKASHI Takahiro Feb. 1, 2022, 1:32 a.m. UTC
For adding signing feature for capsule authentication to the host tool,
mkeficapsule, we will link gnutls library for crypto operation.
Since we need this command to complete the capsule authentication test
on sandbox in CI loop, necessary packages must be installed on the host.

See my patch, "tools: mkeficapsule: add firmware image signing."

Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
---
 Dockerfile | 2 ++
 1 file changed, 2 insertions(+)

Comments

Tom Rini Feb. 4, 2022, 12:41 a.m. UTC | #1
On Tue, Feb 01, 2022 at 10:32:36AM +0900, AKASHI Takahiro wrote:

> For adding signing feature for capsule authentication to the host tool,
> mkeficapsule, we will link gnutls library for crypto operation.
> Since we need this command to complete the capsule authentication test
> on sandbox in CI loop, necessary packages must be installed on the host.
> 
> See my patch, "tools: mkeficapsule: add firmware image signing."
> 
> Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/Dockerfile b/Dockerfile
index d2f0074ee8a6..83fc0c94a30a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -62,6 +62,8 @@  RUN apt-get update && apt-get install -y \
 	imagemagick \
 	iputils-ping \
 	libguestfs-tools \
+	libgnutls28-dev \
+	libgnutls30 \
 	libisl15 \
 	liblz4-tool \
 	libpixman-1-dev \