From 0d23c6c9625d5af1a0a23bee72b5ca1a6889c1c6 Mon Sep 17 00:00:00 2001 From: David Bauer Date: Thu, 2 Jun 2022 17:06:56 +0200 Subject: [PATCH] ipq40xx: switch QCA4019 firmware to -ct Use the candelatech firmware for the QCA4019 WiSoC. The Qualcomm firmware used for this specific 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. Signed-off-by: David Bauer --- targets/ipq40xx-generic | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/targets/ipq40xx-generic b/targets/ipq40xx-generic index e3fc746be98..32c579b4682 100644 --- a/targets/ipq40xx-generic +++ b/targets/ipq40xx-generic @@ -2,15 +2,15 @@ local ATH10K_PACKAGES_IPQ40XX = { 'kmod-ath10k', '-kmod-ath10k-ct', '-kmod-ath10k-ct-smallbuffers', - 'ath10k-firmware-qca4019', - '-ath10k-firmware-qca4019-ct', + '-ath10k-firmware-qca4019', + 'ath10k-firmware-qca4019-ct', } local ATH10K_PACKAGES_IPQ40XX_QCA9888 = { 'kmod-ath10k', '-kmod-ath10k-ct', '-kmod-ath10k-ct-smallbuffers', - 'ath10k-firmware-qca4019', - '-ath10k-firmware-qca4019-ct', + '-ath10k-firmware-qca4019', + 'ath10k-firmware-qca4019-ct', 'ath10k-firmware-qca9888', '-ath10k-firmware-qca9888-ct', }