diff options
| author | Mieczyslaw Nalewaj | 2025-04-27 16:59:18 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-04-30 14:26:47 +0000 |
| commit | 6f19be76919ce9af418c83fa63a3ef5e8ccc78cf (patch) | |
| tree | 31dc1d502dab4ccabd26bc517660e6a78913bb77 | |
| parent | ef590451a3ad1bb0f2ff302a9cc257aeb8640910 (diff) | |
| download | openwrt-6f19be76919ce9af418c83fa63a3ef5e8ccc78cf.tar.gz | |
kernel/hwmon-core: 6.12: fix missing dependency
Add missing depends kmod-i2c-core.
Package kmod-hwmon-core is missing dependencies for the following libraries:
i2c-core.ko
Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com>
Link: https://github.com/openwrt/openwrt/pull/16547
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | package/kernel/linux/modules/hwmon.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/hwmon.mk b/package/kernel/linux/modules/hwmon.mk index 9d794d69f2..8c3bbe9327 100644 --- a/package/kernel/linux/modules/hwmon.mk +++ b/package/kernel/linux/modules/hwmon.mk @@ -9,6 +9,7 @@ HWMON_MENU:=Hardware Monitoring Support define KernelPackage/hwmon-core SUBMENU:=$(HWMON_MENU) + DEPENDS:=+!LINUX_6_6:kmod-i2c-core TITLE:=Hardware monitoring support KCONFIG:= \ CONFIG_HWMON \ |