Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 470cc415 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by David Vrabel
Browse files

wusb: add the Wireless USB core (build-system)



Add the WUSB build system (Kconfig and Kbuild) files.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarDavid Vrabel <david.vrabel@csr.com>
parent d59db761
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -97,6 +97,8 @@ source "drivers/usb/core/Kconfig"

source "drivers/usb/mon/Kconfig"

source "drivers/usb/wusbcore/Kconfig"

source "drivers/usb/host/Kconfig"

source "drivers/usb/musb/Kconfig"
+2 −0
Original line number Diff line number Diff line
@@ -19,6 +19,8 @@ obj-$(CONFIG_USB_R8A66597_HCD) += host/

obj-$(CONFIG_USB_C67X00_HCD)	+= c67x00/

obj-$(CONFIG_USB_WUSB)		+= wusbcore/

obj-$(CONFIG_USB_ACM)		+= class/
obj-$(CONFIG_USB_PRINTER)	+= class/

+17 −0
Original line number Diff line number Diff line
#
# Wireless USB Core configuration
#
config USB_WUSB
	tristate "Enable Wireless USB extensions"
	depends on USB
        select UWB
        select CRYPTO
        select CRYPTO_BLKCIPHER
        select CRYPTO_CBC
        select CRYPTO_MANAGER
        select CRYPTO_AES
	help
	  Enable the host-side support for Wireless USB.

          To compile this support select Y (built in). It is safe to
	  select even if you don't have the hardware.
+12 −0
Original line number Diff line number Diff line
obj-$(CONFIG_USB_WUSB)		+= wusbcore.o

wusbcore-objs := 	\
	crypto.o	\
	devconnect.o	\
	dev-sysfs.o	\
	mmc.o		\
	pal.o		\
	rh.o		\
	reservation.o	\
	security.o	\
	wusbhc.o