[openwrt/openwrt] kernel: rtl8261n: allow selection as package
LEDE Commits
lede-commits at lists.infradead.org
Fri Oct 17 16:31:39 PDT 2025
hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/010c08ceb553af2ef18c13cd4412b056a87de4cd
commit 010c08ceb553af2ef18c13cd4412b056a87de4cd
Author: Kenneth Kasilag <kenneth at kasilag.me>
AuthorDate: Fri Oct 17 02:07:25 2025 +0000
kernel: rtl8261n: allow selection as package
Previously, devices would have to select `CONFIG_RTL8261N_PHY=Y` in the
whole target's kernel config. Now that this driver is becoming usable
for devices other than Realtek switches, allow packaging this driver
separately.
Signed-off-by: Kenneth Kasilag <kenneth at kasilag.me>
Link: https://github.com/openwrt/openwrt/pull/20429
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
package/kernel/linux/modules/netdevices.mk | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/package/kernel/linux/modules/netdevices.mk b/package/kernel/linux/modules/netdevices.mk
index 522e76d180..77fe0c153b 100644
--- a/package/kernel/linux/modules/netdevices.mk
+++ b/package/kernel/linux/modules/netdevices.mk
@@ -525,6 +525,22 @@ endef
$(eval $(call KernelPackage,phy-realtek))
+define KernelPackage/phy-rtl8261n
+ SUBMENU:=$(NETWORK_DEVICES_MENU)
+ TITLE:=Realtek RTL8261N NBASE-T PHY driver
+ KCONFIG:=CONFIG_RTL8261N_PHY
+ DEPENDS:=+kmod-libphy
+ FILES:=$(LINUX_DIR)/drivers/net/phy/rtl8261n/rtl8261n.ko
+ AUTOLOAD:=$(call AutoLoad,18,rtl8261n,1)
+endef
+
+define KernelPackage/phy-rtl8261n/description
+ Supports the Realtek 8261N NBASE-T PHY.
+endef
+
+$(eval $(call KernelPackage,phy-rtl8261n))
+
+
define KernelPackage/phy-smsc
SUBMENU:=$(NETWORK_DEVICES_MENU)
TITLE:=SMSC PHY driver
More information about the lede-commits
mailing list