Kconfig 602 B

1234567891011121314151617181920212223
  1. menuconfig ACCESSIBILITY
  2. bool "Accessibility support"
  3. ---help---
  4. Enable a submenu where accessibility items may be enabled.
  5. If unsure, say N.
  6. if ACCESSIBILITY
  7. config A11Y_BRAILLE_CONSOLE
  8. bool "Console on braille device"
  9. depends on VT
  10. depends on SERIAL_CORE_CONSOLE
  11. ---help---
  12. Enables console output on a braille device connected to a 8250
  13. serial port. For now only the VisioBraille device is supported.
  14. To actually enable it, you need to pass option
  15. console=brl,ttyS0
  16. to the kernel. Options are the same as for serial console.
  17. If unsure, say N.
  18. endif # ACCESSIBILITY