xref: /linux/drivers/accessibility/Kconfig (revision 44f57d78)
1# SPDX-License-Identifier: GPL-2.0
2menuconfig 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
9	  That includes braille devices, speech synthesis, keyboard
10	  remapping, etc.
11
12	  Say Y here to get to see options for accessibility.
13	  This option alone does not add any kernel code.
14
15	  If you say N, all options in this submenu will be skipped and disabled.
16
17	  If unsure, say N.
18
19if ACCESSIBILITY
20config A11Y_BRAILLE_CONSOLE
21	bool "Console on braille device"
22	depends on VT
23	depends on SERIAL_CORE_CONSOLE
24	---help---
25	  Enables console output on a braille device connected to a 8250
26	  serial port. For now only the VisioBraille device is supported.
27
28	  To actually enable it, you need to pass option
29	  console=brl,ttyS0
30	  to the kernel. Options are the same as for serial console.
31
32	  If unsure, say N.
33
34endif # ACCESSIBILITY
35