summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens2025-03-12 22:54:38 +0000
committerHauke Mehrtens2025-03-12 22:56:09 +0000
commit8d69613125e037d00a4d202e1fb26bfe6548b6b9 (patch)
tree4dabb18adc0c94815318c030bf58e8662cc186e6
parent939628f6b8373fb3dfd26d55229c81e584269a22 (diff)
downloadopenwrt-8d69613125e037d00a4d202e1fb26bfe6548b6b9.tar.gz
armsr: Fix kmod-fsl-dpaa2-net build
The build failed because the CONFIG_FSL_DPAA2_ETH_DCB option was not set. Activate this option to build the driver with DCB support when it is available. Fixes: 40f1db9cb11d ("kernel: Add KERNEL_DCB (Data Center Bridging)") Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--target/linux/armsr/modules.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/armsr/modules.mk b/target/linux/armsr/modules.mk
index 692fb9fa68..d570d7f74e 100644
--- a/target/linux/armsr/modules.mk
+++ b/target/linux/armsr/modules.mk
@@ -128,7 +128,8 @@ define KernelPackage/fsl-dpaa2-net
+kmod-fsl-pcs-lynx +kmod-fsl-mc-dpio
KCONFIG:= \
CONFIG_FSL_MC_UAPI_SUPPORT=y \
- CONFIG_FSL_DPAA2_ETH
+ CONFIG_FSL_DPAA2_ETH \
+ CONFIG_FSL_DPAA2_ETH_DCB=y
FILES:= \
$(LINUX_DIR)/drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth.ko
AUTOLOAD=$(call AutoLoad,35,fsl-dpaa2-eth)