mirror of
https://github.com/openwrt/openwrt.git
synced 2026-06-17 14:50:15 +04:00
fb7c14ce7b
The AddDepends/pse-pd helper appended kmod-pse-pd to DEPENDS without the '+' prefix, making it a hard dependency rather than an auto-selecting one. This breaks pulling any PSE controller driver (kmod-pse-pd692x0, kmod-pse-si3474, kmod-pse-tps23881, kmod-pse-regulator, ...) in via a device's DEVICE_PACKAGES: the kmod itself is auto-selected, but the unsatisfied hard dep on kmod-pse-pd silently drops it from .config. Prefix the kmod-pse-pd entry with '+' so it auto-selects, matching how the other deps in the same file (kmod-i2c-core, etc.) are expressed. The helper is the right place to fix this; every PSE controller driver routes through it. Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com> Link: https://github.com/openwrt/openwrt/pull/23449 Signed-off-by: Robert Marko <robimarko@gmail.com>