2013-04-21 12:42:51 +02:00
..
2013-04-21 01:46:44 +02:00
2013-04-21 12:42:51 +02:00
2013-04-21 01:46:44 +02:00
2013-04-21 12:42:51 +02:00
2013-04-21 01:46:44 +02:00
2013-04-20 11:54:17 +02:00

Generate:
- input.h constants ; macros:
    - EV_*
    - KEY_*
    - BTN_*
    - REL_*
    - ABS_*

    gcc -E -dM /usr/include/linux/input.h | egrep ' (EV|SYN|KEY|BTN|REL|ABS|MSC|LED|SND|REP|SW)_[A-Za-z0-9_]+' | ( echo "#include <linux/input.h>" ; echo "input_constants_dict = {" ; sed -r 's/[^ ]+ +([^ ]+).*/"\1" : \1,/' ; echo "}" ) | gcc -E -o /dev/stdout - | grep 'input_constants_dict = {' -A 100000 > gen.py


    Lambas for EVIO*


- uinput