diff options
| author | Thomas Richard | 2025-06-27 13:59:22 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-08-08 16:06:51 +0000 |
| commit | 0f782fc2e9ed25767b4351047e815e9dc8ac8298 (patch) | |
| tree | 41a256c3db3d5d419b2f4b6c1e57ec369a35ed89 | |
| parent | 65aea930a5cf3b4a5beeeb45a46b4b26b94ce9b6 (diff) | |
| download | openwrt-0f782fc2e9ed25767b4351047e815e9dc8ac8298.tar.gz | |
kernel: usb: fix dependencies for kmod-usb-roles package
The usb role driver does not depend on the kernel config CONFIG_USB (host
side support). It only depends on the kernel config CONFIG_USB_SUPPORT.
Now it depends on the OpenWrt configurations USB_SUPPORT or
USB_GADGET_SUPPORT (usb and usbgadget features). We can assume that if usb
or usbgadget features are set, CONFIG_USB_SUPPORT has been set in the
target/subtarget kernel config.
Signed-off-by: Thomas Richard <thomas.richard@bootlin.com>
Link: https://github.com/openwrt/openwrt/pull/19246
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/kernel/linux/modules/usb.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk index 239074de63..d3b37311bc 100644 --- a/package/kernel/linux/modules/usb.mk +++ b/package/kernel/linux/modules/usb.mk @@ -1868,11 +1868,12 @@ endef $(eval $(call KernelPackage,usb-net2280)) define KernelPackage/usb-roles + SUBMENU:=$(USB_MENU) TITLE:=USB Role Switch Library Module + DEPENDS:=@USB_SUPPORT||USB_GADGET_SUPPORT KCONFIG:=CONFIG_USB_ROLE_SWITCH HIDDEN:=1 FILES:=$(LINUX_DIR)/drivers/usb/roles/roles.ko - $(call AddDepends/usb) endef define KernelPackage/usb-roles/description |