From e103e311969d76399f474a97596cd5a9cfd798bb Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Mon, 20 May 2024 15:47:19 -0700 Subject: [PATCH] chore: Remove no longer needed firmware change --- Containerfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Containerfile b/Containerfile index 13ed83ed..b8600f95 100644 --- a/Containerfile +++ b/Containerfile @@ -71,14 +71,7 @@ RUN rpm-ostree cliwrap install-to-root / && \ ostree container commit # Setup firmware -RUN mkdir -p /tmp/mediatek-firmware && \ - curl -Lo /tmp/mediatek-firmware/WIFI_MT7922_patch_mcu_1_1_hdr.bin https://gitlab.com/kernel-firmware/linux-firmware/-/raw/8f08053b2a7474e210b03dbc2b4ba59afbe98802/mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin?inline=false && \ - curl -Lo /tmp/mediatek-firmware/WIFI_RAM_CODE_MT7922_1.bin https://gitlab.com/kernel-firmware/linux-firmware/-/raw/8f08053b2a7474e210b03dbc2b4ba59afbe98802/mediatek/WIFI_RAM_CODE_MT7922_1.bin?inline=false && \ - xz --check=crc32 /tmp/mediatek-firmware/WIFI_MT7922_patch_mcu_1_1_hdr.bin && \ - xz --check=crc32 /tmp/mediatek-firmware/WIFI_RAM_CODE_MT7922_1.bin && \ - mv -vf /tmp/mediatek-firmware/* /usr/lib/firmware/mediatek/ && \ - rm -rf /tmp/mediatek-firmware && \ - mkdir -p /tmp/linux-firmware-neptune && \ +RUN mkdir -p /tmp/linux-firmware-neptune && \ curl -Lo /tmp/linux-firmware-neptune/cs35l41-dsp1-spk-cali.bin https://gitlab.com/evlaV/linux-firmware-neptune/-/raw/jupiter-20231113.1/cs35l41-dsp1-spk-cali.bin && \ curl -Lo /tmp/linux-firmware-neptune/cs35l41-dsp1-spk-cali.wmfw https://gitlab.com/evlaV/linux-firmware-neptune/-/raw/jupiter-20231113.1/cs35l41-dsp1-spk-cali.wmfw && \ curl -Lo /tmp/linux-firmware-neptune/cs35l41-dsp1-spk-prot.bin https://gitlab.com/evlaV/linux-firmware-neptune/-/raw/jupiter-20231113.1/cs35l41-dsp1-spk-prot.bin && \