aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Floren <john@jfloren.net>2011-06-01 17:53:56 +0300
committerWill Deacon <will.deacon@arm.com>2015-06-01 16:39:44 +0100
commite342083c127d150f36289a0dbcfe153f15bbd73b (patch)
treea15d64c8e809d68d7018e0558c01fdc0412aef52 /Makefile
parentf588adbbff064bec620968f651cfa9d0b2d9276b (diff)
downloadkvmtool-e342083c127d150f36289a0dbcfe153f15bbd73b.tar.gz
kvm tools: Add support for PS/2 keyboard system
Add support for PS/2 keyboard system with AUX device (aka mouse). The device works with vnc, the guest must be started with the '--vnc' parameter for the device to be initialized. Signed-off-by: John Floren <john@jfloren.net> [ turn into patch and clean up code ] Signed-off-by: Sasha Levin <levinsasha928@gmail.com> Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e7ceb5c3..8fa7ca83 100644
--- a/Makefile
+++ b/Makefile
@@ -64,6 +64,7 @@ has_vncserver := $(call try-cc,$(SOURCE_VNCSERVER),$(FLAGS_VNCSERVER))
ifeq ($(has_vncserver),y)
CFLAGS += -DCONFIG_HAS_VNCSERVER
OBJS += hw/vesa.o
+ OBJS += hw/i8042.o
LIBS += -lvncserver
endif