summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens2025-07-20 16:34:59 +0000
committerHauke Mehrtens2025-07-25 23:11:20 +0000
commit7b3e9b7bab8274736834f1bb45cfd34d8609e463 (patch)
tree9124bf0dd3d17bb2edea92189c31fe75453b7ae2
parentaa04a5366c53986698b5ef19b2c76d7197084b36 (diff)
downloadopenwrt-7b3e9b7bab8274736834f1bb45cfd34d8609e463.tar.gz
kernel: kmod-ag71xx: Depend on ath79 only
The kernel driver configuration depends on ath79 or compile test and not on PCI. Allow this package in OpenWrt only for the ath79 target. Link: https://github.com/openwrt/openwrt/pull/19480 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--package/kernel/linux/modules/netdevices.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/netdevices.mk b/package/kernel/linux/modules/netdevices.mk
index 3779246646..e52d6f1e6a 100644
--- a/package/kernel/linux/modules/netdevices.mk
+++ b/package/kernel/linux/modules/netdevices.mk
@@ -36,7 +36,7 @@ $(eval $(call KernelPackage,skge))
define KernelPackage/ag71xx
SUBMENU:=$(NETWORK_DEVICES_MENU)
TITLE:=Atheros AR7XXX/AR9XXX ethernet mac support
- DEPENDS:=@PCI_SUPPORT||TARGET_ath79 +kmod-phylink +kmod-mdio-devres +kmod-net-selftests
+ DEPENDS:=@TARGET_ath79 +kmod-phylink +kmod-mdio-devres +kmod-net-selftests
KCONFIG:=CONFIG_AG71XX
FILES:=$(LINUX_DIR)/drivers/net/ethernet/atheros/ag71xx.ko
AUTOLOAD:=$(call AutoLoad,50,ag71xx,1)