I have udev
support in kernel(CONFIG_DEVTMPFS
), thus my system does not strictly require udev daemon
. Indeed everything works fine without udev daemon
with the exception of Xorg
(LXDE
).
LXDE
starts fine, but keyboard and mouse are not working.
A related question on SuperUser suggests I need to modify my /etc/X11/xorg.conf
to not use udev, but specify input devices manually.
These are the relevant sections in my /etc/X11/xorg.conf
:
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
How do I need to change my xorg.conf
so that my input devices work ?