diff options
author | Koen Martens <gmc@sonologic.nl> | 2017-06-19 18:55:06 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-19 21:42:54 +0200 |
commit | 9d274324de74d0b9ea58d88f1807184879a7b615 (patch) | |
tree | 05126c8c1fa9d34196cd525fa89012464519996e /package/linuxconsoletools/Config.in | |
parent | 6a20a98f4b5e576b7c3dc844951b0153963b739a (diff) | |
download | buildroot-9d274324de74d0b9ea58d88f1807184879a7b615.tar.gz buildroot-9d274324de74d0b9ea58d88f1807184879a7b615.zip |
linuxconsoletools: new package
Linuxconsoletools contains the inputattach utility
to attach legacy serial devices to the Linux kernel
input layer and joystick utilities to calibrate and
test joysticks and joypads.
The buildroot package adds options to build only certain
tools.
website: http://sf.net/projects/linuxconsole/
Signed-off-by: Koen Martens <gmc@sonologic.nl>
[Thomas: minor tweaks to Config.in and .mk file.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/linuxconsoletools/Config.in')
-rw-r--r-- | package/linuxconsoletools/Config.in | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/package/linuxconsoletools/Config.in b/package/linuxconsoletools/Config.in new file mode 100644 index 0000000000..d2b0117f48 --- /dev/null +++ b/package/linuxconsoletools/Config.in @@ -0,0 +1,33 @@ +config BR2_PACKAGE_LINUXCONSOLETOOLS + bool "linuxconsoletools" + help + Linuxconsoletools contains the inputattach utility + to attach legacy serial devices to the Linux kernel + input layer and joystick utilities to calibrate and + test joysticks and joypads. + + http://sf.net/projects/linuxconsole/ + +if BR2_PACKAGE_LINUXCONSOLETOOLS + +config BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH + bool "inputattach" + default y + help + The inputattach utility attaches legacy serial devices + to the Linux kernel input layer. + +config BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK + bool "joystick utilities" + help + Joystick utilities (jstest, jscal, jscal-store, + jscal-restore, evdev-joystick). + +config BR2_PACKAGE_LINUXCONSOLETOOLS_FORCEFEEDBACK + bool "force-feedback utilities" + select BR2_PACKAGE_SDL + help + Build force-feedback driver utilities (fftest, + ffmvforce, ffset, ffcfstress). + +endif |