mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 006a5edebe
			
		
	
	
		006a5edebe
		
	
	
	
	
		
			
			This allows to assign host input devices to the guest: qemu -device virtio-input-host-pci,evdev=/dev/input/event<nr> The guest gets exclusive access to the input device, so be careful with assigning the keyboard if you have only one connected to your machine. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			638 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			638 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| common-obj-$(CONFIG_ADB) += adb.o
 | |
| common-obj-y += hid.o
 | |
| common-obj-$(CONFIG_LM832X) += lm832x.o
 | |
| common-obj-$(CONFIG_PCKBD) += pckbd.o
 | |
| common-obj-$(CONFIG_PL050) += pl050.o
 | |
| common-obj-y += ps2.o
 | |
| common-obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o
 | |
| common-obj-$(CONFIG_TSC2005) += tsc2005.o
 | |
| common-obj-$(CONFIG_VMMOUSE) += vmmouse.o
 | |
| 
 | |
| ifeq ($(CONFIG_LINUX),y)
 | |
| common-obj-$(CONFIG_VIRTIO) += virtio-input.o
 | |
| common-obj-$(CONFIG_VIRTIO) += virtio-input-hid.o
 | |
| common-obj-$(CONFIG_VIRTIO) += virtio-input-host.o
 | |
| endif
 | |
| 
 | |
| obj-$(CONFIG_MILKYMIST) += milkymist-softusb.o
 | |
| obj-$(CONFIG_PXA2XX) += pxa2xx_keypad.o
 | |
| obj-$(CONFIG_TSC210X) += tsc210x.o
 |