Kconfig 965 B

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