Community Added Features on LO kernel
From OMAPpedia
(Difference between revisions)
(Created page with '== USB Keyboard and Mouse == The kernel currently has g_zero support. The devices keyboard and mouse have been added based on that. The config changes to enable these are. Modif…') |
(→USB Keyboard and Mouse) |
||
| Line 11: | Line 11: | ||
CONFIG_INPUT_MOUSEDEV_PSAUX=y | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| - | # | + | # |
| - | # Input Device Drivers | + | # Input Device Drivers |
| - | # | + | # |
| - | # CONFIG_INPUT_KEYBOARD is not set | + | # CONFIG_INPUT_KEYBOARD is not set |
| - | CONFIG_INPUT_KEYBOARD=y | + | CONFIG_INPUT_KEYBOARD=y |
| - | CONFIG_KEYBOARD_ATKBD=y | + | CONFIG_KEYBOARD_ATKBD=y |
| - | CONFIG_KEYBOARD_TWL4030=y | + | CONFIG_KEYBOARD_TWL4030=y |
| - | # CONFIG_INPUT_MOUSE is not set | + | # CONFIG_INPUT_MOUSE is not set |
| - | CONFIG_INPUT_MOUSE=y | + | CONFIG_INPUT_MOUSE=y |
| - | CONFIG_MOUSE_PS2=y | + | CONFIG_MOUSE_PS2=y |
| - | CONFIG_MOUSE_PS2_ALPS=y | + | CONFIG_MOUSE_PS2_ALPS=y |
| - | CONFIG_MOUSE_PS2_LOGIPS2PP=y | + | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
| - | CONFIG_MOUSE_PS2_SYNAPTICS=y | + | CONFIG_MOUSE_PS2_SYNAPTICS=y |
| - | CONFIG_MOUSE_PS2_LIFEBOOK=y | + | CONFIG_MOUSE_PS2_LIFEBOOK=y |
| - | CONFIG_MOUSE_PS2_TRACKPOINT=y | + | CONFIG_MOUSE_PS2_TRACKPOINT=y |
| - | CONFIG_INPUT_UINPUT=y | + | CONFIG_INPUT_UINPUT=y |
| - | CONFIG_INPUT_GPIO=y | + | CONFIG_INPUT_GPIO=y |
| - | CONFIG_INPUT_KEYCHORD=y | + | CONFIG_INPUT_KEYCHORD=y |
The changes will soon be pushed upstream. | The changes will soon be pushed upstream. | ||
| - | |||
| - | |||
| - | |||
== HDMI == | == HDMI == | ||
Revision as of 16:56, 5 October 2009
USB Keyboard and Mouse
The kernel currently has g_zero support. The devices keyboard and mouse have been added based on that. The config changes to enable these are.
Modify the Zoom2 Defconfig (kernel_omap3/arch/arm/configs/omap_zoom2_defconfig) for the below.
# # Userland interfaces # # CONFIG_INPUT_MOUSEDEV is not set CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_PSAUX=y
# # Input Device Drivers # # CONFIG_INPUT_KEYBOARD is not set CONFIG_INPUT_KEYBOARD=y CONFIG_KEYBOARD_ATKBD=y CONFIG_KEYBOARD_TWL4030=y
# CONFIG_INPUT_MOUSE is not set CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y CONFIG_MOUSE_PS2_ALPS=y CONFIG_MOUSE_PS2_LOGIPS2PP=y CONFIG_MOUSE_PS2_SYNAPTICS=y CONFIG_MOUSE_PS2_LIFEBOOK=y CONFIG_MOUSE_PS2_TRACKPOINT=y
CONFIG_INPUT_UINPUT=y CONFIG_INPUT_GPIO=y CONFIG_INPUT_KEYCHORD=y
The changes will soon be pushed upstream.