[openwrt/openwrt] kernel: netdevices: add leds support
LEDE Commits
lede-commits at lists.infradead.org
Sun Sep 22 09:46:25 PDT 2024
hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/2f96b67b8f1ee79db9e17f8cbf8e3e1457da2c77
commit 2f96b67b8f1ee79db9e17f8cbf8e3e1457da2c77
Author: Oskari Lemmela <oskari at lemmela.net>
AuthorDate: Thu Jul 11 11:01:32 2024 +0300
kernel: netdevices: add leds support
Compile LED support to swconfig and phy modules
Signed-off-by: Oskari Lemmela <oskari at lemmela.net>
Link: https://github.com/openwrt/openwrt/pull/15926
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
package/kernel/linux/modules/netdevices.mk | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/package/kernel/linux/modules/netdevices.mk b/package/kernel/linux/modules/netdevices.mk
index 73094ed697..d77dabfa79 100644
--- a/package/kernel/linux/modules/netdevices.mk
+++ b/package/kernel/linux/modules/netdevices.mk
@@ -123,7 +123,8 @@ $(eval $(call KernelPackage,atl1e))
define KernelPackage/libphy
SUBMENU:=$(NETWORK_DEVICES_MENU)
TITLE:=PHY library
- KCONFIG:=CONFIG_PHYLIB
+ KCONFIG:=CONFIG_PHYLIB \
+ CONFIG_PHYLIB_LEDS=y
FILES:=$(LINUX_DIR)/drivers/net/phy/libphy.ko
AUTOLOAD:=$(call AutoLoad,15,libphy,1)
endef
@@ -594,7 +595,8 @@ define KernelPackage/swconfig
SUBMENU:=$(NETWORK_DEVICES_MENU)
TITLE:=switch configuration API
DEPENDS:=+kmod-libphy
- KCONFIG:=CONFIG_SWCONFIG
+ KCONFIG:=CONFIG_SWCONFIG \
+ CONFIG_SWCONFIG_LEDS=y
FILES:=$(LINUX_DIR)/drivers/net/phy/swconfig.ko
AUTOLOAD:=$(call AutoLoad,41,swconfig)
endef
@@ -752,7 +754,8 @@ define KernelPackage/switch-ar8xxx
SUBMENU:=$(NETWORK_DEVICES_MENU)
TITLE:=Atheros AR8216/8327 switch support
DEPENDS:=+kmod-swconfig +kmod-mdio-devres
- KCONFIG:=CONFIG_AR8216_PHY
+ KCONFIG:=CONFIG_AR8216_PHY \
+ CONFIG_AR8216_PHY_LEDS=y
FILES:=$(LINUX_DIR)/drivers/net/phy/ar8xxx.ko
AUTOLOAD:=$(call AutoLoad,43,ar8xxx,1)
endef
More information about the lede-commits
mailing list