diff options
Diffstat (limited to 'INSTALL')
| -rw-r--r-- | INSTALL | 38 |
1 files changed, 38 insertions, 0 deletions
| @@ -0,0 +1,38 @@ | |||
| 1 | evemu - Kernel device emulation | ||
| 2 | |||
| 3 | To build, you need to have the autoconf and libtool packages | ||
| 4 | installed. Then, do | ||
| 5 | |||
| 6 | ./autogen.sh | ||
| 7 | ./configure | ||
| 8 | make | ||
| 9 | |||
| 10 | To extract the properties of a device at /dev/input/eventX, do | ||
| 11 | |||
| 12 | sudo ./tools/evemu-describe /dev/input/eventX > device.properties | ||
| 13 | |||
| 14 | To record a stream of events, do | ||
| 15 | |||
| 16 | sudo ./tools/evemu-record /dev/input/eventX > device.data | ||
| 17 | |||
| 18 | To create a device from the properties, do | ||
| 19 | |||
| 20 | sudo ./tools/evemu-create device.properties | ||
| 21 | |||
| 22 | To replay a stream of events, do | ||
| 23 | |||
| 24 | sudo ./tools/evemu-play /dev/input/eventY device.data | ||
| 25 | |||
| 26 | To destroy the device, do | ||
| 27 | |||
| 28 | sudo ./tools/evemu-destroy /dev/input/eventY | ||
| 29 | |||
| 30 | To install evemu, do | ||
| 31 | |||
| 32 | sudo make install | ||
| 33 | |||
| 34 | By default, evemu installs to /usr/local. To change, use the --prefix | ||
| 35 | configure option. | ||
| 36 | |||
| 37 | Enjoy, | ||
| 38 | Henrik | ||
