1 #
2 # Input core configuration
3 #
4
5 mainmenu_option next_comment
6 comment 'Input core support'
7
8 tristate 'Input core support' CONFIG_INPUT
9 if [ "$CONFIG_INPUT" != "n" ]; then
10 dep_tristate ' Keyboard support' CONFIG_INPUT_KEYBDEV $CONFIG_INPUT
11 dep_tristate ' Mouse support' CONFIG_INPUT_MOUSEDEV $CONFIG_INPUT
12 if [ "$CONFIG_INPUT_MOUSEDEV" != "n" ]; then
13 int ' Horizontal screen resolution' CONFIG_INPUT_MOUSEDEV_SCREEN_X 1024
14 int ' Vertical screen resolution' CONFIG_INPUT_MOUSEDEV_SCREEN_Y 768
15 fi
16 dep_tristate ' Joystick support' CONFIG_INPUT_JOYDEV $CONFIG_INPUT
17 dep_tristate ' Event interface support' CONFIG_INPUT_EVDEV $CONFIG_INPUT
18 fi
19
20 endmenu
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.