mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 07:46:48 +00:00
4695778865
The usb-fotg210 does not currently select CONFIG_USB_FOTG210_UDC which enable OTG support, but it was previously selected directly in the target kernel config so lets enable it to keep the functionality identical. Signed-off-by: Robert Marko <robimarko@gmail.com>
14 lines
387 B
Makefile
14 lines
387 B
Makefile
define KernelPackage/usb-fotg210
|
|
TITLE:=Support for FOTG210 USB host and device controllers
|
|
DEPENDS:=@USB_SUPPORT @TARGET_gemini
|
|
KCONFIG:= \
|
|
CONFIG_USB_FOTG210 \
|
|
CONFIG_USB_FOTG210_HCD=y \
|
|
CONFIG_USB_FOTG210_UDC=y
|
|
FILES:=$(LINUX_DIR)/drivers/usb/fotg210/fotg210.ko
|
|
AUTOLOAD:=$(call AutoLoad,50,1)
|
|
$(call AddDepends/usb)
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,usb-fotg210))
|