Select Git revision
ipq806x-generic
-
David Bauer authored
Use the candelatech firmware for the QCA Wave-2 firmware. The Qualcomm firmware used for the IPQ401x chip in OpenWrt in 22.03 is experiencing heavily degraded performance due to excessive retransmits when using A-MSDU. Disabling VHT modes or switching to the candelatech firmware circumvents this issue. Apply the same to other Wave-2 platforms in order to keep consistency with upstream. Wave-1 chips do not support mesh modes with the -ct firmware, so keep using the QCA firmware in their case. Signed-off-by:
David Bauer <mail@david-bauer.net>
David Bauer authoredUse the candelatech firmware for the QCA Wave-2 firmware. The Qualcomm firmware used for the IPQ401x chip in OpenWrt in 22.03 is experiencing heavily degraded performance due to excessive retransmits when using A-MSDU. Disabling VHT modes or switching to the candelatech firmware circumvents this issue. Apply the same to other Wave-2 platforms in order to keep consistency with upstream. Wave-1 chips do not support mesh modes with the -ct firmware, so keep using the QCA firmware in their case. Signed-off-by:
David Bauer <mail@david-bauer.net>
Dockerfile 907 B
FROM debian:bookworm-slim
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
file \
git \
python3 \
python3-distutils \
build-essential \
gawk \
unzip \
libncurses5-dev \
zlib1g-dev \
libssl-dev \
libelf-dev \
wget \
rsync \
time \
qemu-utils \
ecdsautils \
lua-check \
shellcheck \
libnss-unknown \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /tmp/ec &&\
wget -O /tmp/ec/ec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.7.0/ec-linux-amd64.tar.gz &&\
tar -xvzf /tmp/ec/ec-linux-amd64.tar.gz &&\
mv bin/ec-linux-amd64 /usr/local/bin/editorconfig-checker &&\
rm -rf /tmp/ec
RUN useradd -m -d /gluon -u 100 -g 100 -o gluon
USER gluon
VOLUME /gluon
WORKDIR /gluon