From 1a6b6b2db9cb1f8b86c0070b2c6381c90a0508b2 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Tue, 10 Jul 2018 15:54:23 +0100 Subject: [PATCH] pkg/firmware,firmware-all: Update to latest version Update the the firmware packages to the latest commit of the upstream linux-firmware repository. Signed-off-by: Rolf Neugebauer --- pkg/firmware-all/Dockerfile | 2 +- pkg/firmware/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/firmware-all/Dockerfile b/pkg/firmware-all/Dockerfile index 450cd1790..50e59ccee 100644 --- a/pkg/firmware-all/Dockerfile +++ b/pkg/firmware-all/Dockerfile @@ -3,7 +3,7 @@ RUN apk add --no-cache git # Make sure you also update the FW_COMMIT in ../firmware/Dockerfile ENV FW_URL=git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git -ENV FW_COMMIT=65b1c68c63f974d72610db38dfae49861117cae2 +ENV FW_COMMIT=d1147327232ec4616a66ab898df84f9700c816c1 RUN mkdir -p /out/lib && \ cd /out/lib && \ diff --git a/pkg/firmware/Dockerfile b/pkg/firmware/Dockerfile index fd6f9df46..3019443d7 100644 --- a/pkg/firmware/Dockerfile +++ b/pkg/firmware/Dockerfile @@ -7,7 +7,7 @@ RUN apk add --no-cache git kmod # Clone the firmware repository # Make sure you also update the FW_COMMIT in ../firmware-all/Dockerfile ENV FW_URL=git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git -ENV FW_COMMIT=65b1c68c63f974d72610db38dfae49861117cae2 +ENV FW_COMMIT=d1147327232ec4616a66ab898df84f9700c816c1 WORKDIR / RUN git clone ${FW_URL} && \ cd /linux-firmware && \