Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config BR2_PACKAGE_LINUXCONSOLETOOLS
  2. bool "linuxconsoletools"
  3. select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH if \
  4. !BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK && \
  5. !BR2_PACKAGE_LINUXCONSOLETOOLS_FORCEFEEDBACK
  6. help
  7. Linuxconsoletools contains the inputattach utility
  8. to attach legacy serial devices to the Linux kernel
  9. input layer and joystick utilities to calibrate and
  10. test joysticks and joypads.
  11. http://sf.net/projects/linuxconsole/
  12. if BR2_PACKAGE_LINUXCONSOLETOOLS
  13. config BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
  14. bool "inputattach"
  15. default y
  16. help
  17. The inputattach utility attaches legacy serial devices
  18. to the Linux kernel input layer.
  19. config BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
  20. bool "joystick utilities"
  21. help
  22. Joystick utilities (jstest, jscal, jscal-store,
  23. jscal-restore, evdev-joystick).
  24. config BR2_PACKAGE_LINUXCONSOLETOOLS_FORCEFEEDBACK
  25. bool "force-feedback utilities"
  26. depends on !BR2_STATIC_LIBS
  27. select BR2_PACKAGE_SDL2
  28. help
  29. Build force-feedback driver utilities (fftest,
  30. ffmvforce, ffset, ffcfstress).
  31. comment "force-feedback utilities need a toolchain w/ dynamic library"
  32. depends on BR2_STATIC_LIBS
  33. endif