Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 menuconfig ACCESSIBILITY
0003         bool "Accessibility support"
0004         help
0005           Accessibility handles all special kinds of hardware devices or
0006           software adapters which help people with disabilities (e.g.
0007           blindness) to use computers.
0008 
0009           That includes braille devices, speech synthesis, keyboard
0010           remapping, etc.
0011 
0012           Say Y here to get to see options for accessibility.
0013           This option alone does not add any kernel code.
0014 
0015           If you say N, all options in this submenu will be skipped and disabled.
0016 
0017           If unsure, say N.
0018 
0019 if ACCESSIBILITY
0020 config A11Y_BRAILLE_CONSOLE
0021         bool "Console on braille device"
0022         depends on VT
0023         depends on SERIAL_CORE_CONSOLE
0024         help
0025           Enables console output on a braille device connected to a 8250
0026           serial port. For now only the VisioBraille device is supported.
0027 
0028           To actually enable it, you need to pass option
0029           console=brl,ttyS0
0030           to the kernel. Options are the same as for serial console.
0031 
0032           If unsure, say N.
0033 
0034 source "drivers/accessibility/speakup/Kconfig"
0035 
0036 endif # ACCESSIBILITY