aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/linux/modules
diff options
context:
space:
mode:
authorChristian Marangi <ansuelsmth@gmail.com>2023-11-19 12:52:55 +0100
committerChristian Marangi <ansuelsmth@gmail.com>2023-11-24 16:46:50 +0100
commit6f5c301eab71e07b1fe4b57ce6a2662dca4c66de (patch)
tree5c16b98d2cc5eeba9c98b3c91f3ed89b2ac09353 /package/kernel/linux/modules
parentd1b5981038636e61f92d4b8a72493ea4c9af1feb (diff)
downloadupstream-6f5c301eab71e07b1fe4b57ce6a2662dca4c66de.tar.gz
upstream-6f5c301eab71e07b1fe4b57ce6a2662dca4c66de.tar.bz2
upstream-6f5c301eab71e07b1fe4b57ce6a2662dca4c66de.zip
generic: 6.1: backport upstream Aquantia PHY firmware loader patches
Backport merged upstream patch that adds support for firmware loader from NVMEM or attached filesystem for Aquantia PHYs. Refresh all kernel patches affected by this change. Also update the path for aquantia .ko that got moved to dedicated directory upstream. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'package/kernel/linux/modules')
-rw-r--r--package/kernel/linux/modules/netdevices.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/package/kernel/linux/modules/netdevices.mk b/package/kernel/linux/modules/netdevices.mk
index 74ea07e2611..8f5be829780 100644
--- a/package/kernel/linux/modules/netdevices.mk
+++ b/package/kernel/linux/modules/netdevices.mk
@@ -378,9 +378,11 @@ $(eval $(call KernelPackage,phy-smsc))
define KernelPackage/phy-aquantia
SUBMENU:=$(NETWORK_DEVICES_MENU)
TITLE:=Aquantia Ethernet PHYs
- DEPENDS:=+kmod-libphy +kmod-hwmon-core
+ DEPENDS:=+kmod-libphy +kmod-hwmon-core +kmod-lib-crc-ccitt
KCONFIG:=CONFIG_AQUANTIA_PHY
- FILES:=$(LINUX_DIR)/drivers/net/phy/aquantia.ko
+ FILES:= \
+ $(LINUX_DIR)/drivers/net/phy/aquantia.ko@lt6.1 \
+ $(LINUX_DIR)/drivers/net/phy/aquantia/aquantia.ko@ge6.1
AUTOLOAD:=$(call AutoLoad,18,aquantia,1)
endef