Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: GPL-2.0
  2. menuconfig ACCESSIBILITY
  3. bool "Accessibility support"
  4. help
  5. Accessibility handles all special kinds of hardware devices or
  6. software adapters which help people with disabilities (e.g.
  7. blindness) to use computers.
  8. That includes braille devices, speech synthesis, keyboard
  9. remapping, etc.
  10. Say Y here to get to see options for accessibility.
  11. This option alone does not add any kernel code.
  12. If you say N, all options in this submenu will be skipped and disabled.
  13. If unsure, say N.
  14. if ACCESSIBILITY
  15. config A11Y_BRAILLE_CONSOLE
  16. bool "Console on braille device"
  17. depends on VT
  18. depends on SERIAL_CORE_CONSOLE
  19. help
  20. Enables console output on a braille device connected to a 8250
  21. serial port. For now only the VisioBraille device is supported.
  22. To actually enable it, you need to pass option
  23. console=brl,ttyS0
  24. to the kernel. Options are the same as for serial console.
  25. If unsure, say N.
  26. source "drivers/accessibility/speakup/Kconfig"
  27. endif # ACCESSIBILITY