mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-16 19:54:04 +02:00
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
This commit is contained in:
parent
a165494cd2
commit
a1b2ddfdde
@ -994,3 +994,34 @@ endef
|
|||||||
|
|
||||||
$(eval $(call KernelPackage,usb-brcm47xx))
|
$(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))
|
||||||
|
Loading…
Reference in New Issue
Block a user