From: AKASHI Takahiro Date: Tue, 1 Feb 2022 01:32:36 +0000 (+0900) Subject: Dockerfile: Add libgnutls package for building mkeficapsule command X-Git-Tag: v2022.07~195^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad3616edb093eae93cf74ae62e04d1545a1e1cb1;p=platform%2Fkernel%2Fu-boot.git Dockerfile: Add libgnutls package for building mkeficapsule command 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 --- diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index f19e618..141260c 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -67,6 +67,8 @@ RUN apt-get update && apt-get install -y \ libgit2-dev \ libjson-glib-dev \ libguestfs-tools \ + libgnutls28-dev \ + libgnutls30 \ liblz4-tool \ libpixman-1-dev \ libpython3-dev \