mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
9360575c58
Add the driver to Kconfig to make it visible in menuconfig and allow people to compile it. This commit is a result of cooperation between Samsung R&D Institute Poland and Open Operating Systems Student Society at University of Warsaw (O2S3@UW) consisting of: Igor Kotrasinski <ikotrasinsk@gmail.com> Karol Kosik <karo9@interia.eu> Ewelina Kosmider <3w3lfin@gmail.com> Dawid Lazarczyk <lazarczyk.dawid@gmail.com> Piotr Szulc <ps347277@students.mimuw.edu.pl> Tutor and project owner: Krzysztof Opasiak <k.opasiak@samsung.com> Signed-off-by: Igor Kotrasinski <i.kotrasinsk@samsung.com> Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14 lines
461 B
Makefile
14 lines
461 B
Makefile
ccflags-$(CONFIG_USBIP_DEBUG) := -DDEBUG
|
|
|
|
obj-$(CONFIG_USBIP_CORE) += usbip-core.o
|
|
usbip-core-y := usbip_common.o usbip_event.o
|
|
|
|
obj-$(CONFIG_USBIP_VHCI_HCD) += vhci-hcd.o
|
|
vhci-hcd-y := vhci_sysfs.o vhci_tx.o vhci_rx.o vhci_hcd.o
|
|
|
|
obj-$(CONFIG_USBIP_HOST) += usbip-host.o
|
|
usbip-host-y := stub_dev.o stub_main.o stub_rx.o stub_tx.o
|
|
|
|
obj-$(CONFIG_USBIP_VUDC) += usbip-vudc.o
|
|
usbip-vudc-y := vudc_dev.o vudc_sysfs.o vudc_tx.o vudc_rx.o vudc_transfer.o vudc_main.o
|