mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:44:16 +00:00 
			
		
		
		
	 5319dc7b42
			
		
	
	
		5319dc7b42
		
	
	
	
	
		
			
			This patch adds support for special usb descriptors used by microsoft windows. They allow more fine-grained control over driver binding and adding entries to the registry for configuration. As this is a guest-visible change the "msos-desc" compat property has been added to turn this off for 1.7 + older Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # usb subsystem core
 | |
| common-obj-y += core.o combined-packet.o bus.o desc.o desc-msos.o
 | |
| common-obj-y += libhw.o
 | |
| 
 | |
| # usb host adapters
 | |
| common-obj-$(CONFIG_USB_UHCI) += hcd-uhci.o
 | |
| common-obj-$(CONFIG_USB_OHCI) += hcd-ohci.o
 | |
| common-obj-$(CONFIG_USB_EHCI) += hcd-ehci.o hcd-ehci-pci.o hcd-ehci-sysbus.o
 | |
| common-obj-$(CONFIG_USB_XHCI) += hcd-xhci.o
 | |
| common-obj-$(CONFIG_USB_MUSB) += hcd-musb.o
 | |
| 
 | |
| # emulated usb devices
 | |
| common-obj-y += dev-hub.o
 | |
| common-obj-y += dev-hid.o
 | |
| common-obj-$(CONFIG_USB_TABLET_WACOM) += dev-wacom.o
 | |
| common-obj-$(CONFIG_USB_STORAGE_BOT)  += dev-storage.o
 | |
| common-obj-$(CONFIG_USB_STORAGE_UAS)  += dev-uas.o
 | |
| common-obj-$(CONFIG_USB_AUDIO)        += dev-audio.o
 | |
| common-obj-$(CONFIG_USB_SERIAL)       += dev-serial.o
 | |
| common-obj-$(CONFIG_USB_NETWORK)      += dev-network.o
 | |
| common-obj-$(CONFIG_USB_BLUETOOTH)    += dev-bluetooth.o
 | |
| 
 | |
| ifeq ($(CONFIG_USB_SMARTCARD),y)
 | |
| common-obj-y                          += dev-smartcard-reader.o
 | |
| common-obj-y                          += ccid-card-passthru.o
 | |
| common-obj-$(CONFIG_SMARTCARD_NSS)    += ccid-card-emulated.o
 | |
| endif
 | |
| 
 | |
| # usb redirection
 | |
| common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o
 | |
| 
 | |
| # usb pass-through
 | |
| common-obj-y += $(patsubst %,host-%.o,$(HOST_USB))
 |