Kconfig 990 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # Kconfig - Actions input menager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig INPUT
  8. bool
  9. prompt "Input"
  10. select INPUT_MANAGER
  11. default n
  12. help
  13. This option enables actions input
  14. config INPUT_MANAGER
  15. bool
  16. prompt "INPUT manager Support"
  17. depends on INPUT
  18. select KEY
  19. default n
  20. help
  21. This option enables actions input manager.
  22. config INPUT_MUTIPLE_CLICK
  23. bool
  24. prompt "INPUT mutiple click Support"
  25. depends on INPUT_MANAGER
  26. default n
  27. help
  28. This option enables actions input manager.
  29. config INPUT_POINTER
  30. bool
  31. prompt "INPUT Pointer Support"
  32. depends on INPUT_MANAGER
  33. default n
  34. help
  35. This option enables actions input pointer.
  36. config INPUT_KEYPAD
  37. bool
  38. prompt "INPUT KEYPAD Support"
  39. depends on INPUT_MANAGER
  40. default n
  41. help
  42. This option enables actions input keypad.
  43. config INPUT_ENCODER
  44. bool
  45. prompt "INPUT ENCODER Support"
  46. depends on INPUT_MANAGER
  47. default n
  48. help
  49. This option enables actions input encoder.