brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · 6b2f79d Raw
37 lines · plain
1# SPDX-License-Identifier: GPL-2.02menuconfig ACCESSIBILITY3	bool "Accessibility support"4	help5	  Accessibility handles all special kinds of hardware devices or6	  software adapters which help people with disabilities (e.g.7	  blindness) to use computers.8 9	  That includes braille devices, speech synthesis, keyboard10	  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 ACCESSIBILITY20config A11Y_BRAILLE_CONSOLE21	bool "Console on braille device"22	depends on VT23	depends on SERIAL_CORE_CONSOLE24	help25	  Enables console output on a braille device connected to a 825026	  serial port. For now only the VisioBraille device is supported.27 28	  To actually enable it, you need to pass option29	  console=brl,ttyS030	  to the kernel. Options are the same as for serial console.31 32	  If unsure, say N.33 34source "drivers/accessibility/speakup/Kconfig"35 36endif # ACCESSIBILITY37