]> Git Repo - qemu.git/blob - hw/usb/Makefile.objs
dev-smartcard-reader: define structs for CCID_Parameter internals
[qemu.git] / hw / usb / Makefile.objs
1 # usb subsystem core
2 common-obj-y += core.o combined-packet.o bus.o desc.o
3 common-obj-y += libhw.o
4
5 # usb host adapters
6 common-obj-$(CONFIG_USB_UHCI) += hcd-uhci.o
7 common-obj-$(CONFIG_USB_OHCI) += hcd-ohci.o
8 common-obj-$(CONFIG_USB_EHCI) += hcd-ehci.o hcd-ehci-pci.o hcd-ehci-sysbus.o
9 common-obj-$(CONFIG_USB_XHCI) += hcd-xhci.o
10 common-obj-$(CONFIG_USB_MUSB) += hcd-musb.o
11
12 # emulated usb devices
13 common-obj-y += dev-hub.o
14 common-obj-y += dev-hid.o
15 common-obj-$(CONFIG_USB_TABLET_WACOM) += dev-wacom.o
16 common-obj-$(CONFIG_USB_STORAGE_BOT)  += dev-storage.o
17 common-obj-$(CONFIG_USB_STORAGE_UAS)  += dev-uas.o
18 common-obj-$(CONFIG_USB_AUDIO)        += dev-audio.o
19 common-obj-$(CONFIG_USB_SERIAL)       += dev-serial.o
20 common-obj-$(CONFIG_USB_NETWORK)      += dev-network.o
21
22 # FIXME: make configurable too
23 CONFIG_USB_BLUETOOTH := y
24 common-obj-$(CONFIG_USB_BLUETOOTH)    += dev-bluetooth.o
25
26 ifeq ($(CONFIG_USB_SMARTCARD),y)
27 common-obj-y                          += dev-smartcard-reader.o
28 common-obj-y                          += ccid-card-passthru.o
29 common-obj-$(CONFIG_SMARTCARD_NSS)    += ccid-card-emulated.o
30 endif
31
32 # usb redirection
33 common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o
34
35 # usb pass-through
36 common-obj-y += $(patsubst %,host-%.o,$(HOST_USB))
This page took 0.022681 seconds and 4 git commands to generate.