Skip to content
Snippets Groups Projects
Commit a1b2ddfd authored by nbd's avatar nbd
Browse files

kernel: add module packages for usbip (from the packages feed)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32117 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent a165494c
No related branches found
No related tags found
No related merge requests found
......@@ -994,3 +994,34 @@ endef
$(eval $(call KernelPackage,usb-brcm47xx))
define KernelPackage/usbip
TITLE := USB-over-IP kernel support
KCONFIG:= \
CONFIG_USBIP_CORE \
CONFIG_USBIP_DEBUG=n
FILES:=$(LINUX_DIR)/drivers/staging/usbip/usbip-core.ko
AUTOLOAD:=$(call AutoLoad,90,usbip-core)
$(call AddDepends/usb)
endef
$(eval $(call KernelPackage,usbip))
define KernelPackage/usbip-client
TITLE := USB-over-IP client driver
DEPENDS := +kmod-usbip
KCONFIG := CONFIG_USBIP_VHCI_HCD
FILES := $(LINUX_DIR)/drivers/staging/usbip/vhci-hcd.$(LINUX_KMOD_SUFFIX)
AUTOLOAD := $(call AutoLoad,95,vhci-hcd)
$(call AddDepends/usb)
endef
$(eval $(call KernelPackage,usbip-client))
define KernelPackage/usbip-server
$(call KernelPackage/usbip/Default)
TITLE := USB-over-IP host driver
DEPENDS := +kmod-usbip
KCONFIG := CONFIG_USBIP_HOST
FILES := $(LINUX_DIR)/drivers/staging/usbip/usbip-host.ko
AUTOLOAD := $(call AutoLoad,95,usbip-host)
$(call AddDepends/usb)
endef
$(eval $(call KernelPackage,usbip-server))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment