| View previous topic :: View next topic |
| Author |
Message |
Bia n00b

Joined: 27 May 2011 Posts: 64
|
Posted: Sat Nov 10, 2012 9:57 pm Post subject: xfce4 starts with no input device |
|
|
so i instaled x-server and xorg drivers but it seems i had screwed something up becouse my xfce4 start without any input device and xorg log says that i have no driver specified for the input devices
so can you direct me please where shall i look?
oh seems i accidently deleted file /usr/share/X11/xorg.conf.d/10-evdev.conf.
how do i restore it back? |
|
| Back to top |
|
 |
The Doctor l33t


Joined: 27 Jul 2010 Posts: 944
|
Posted: Sat Nov 10, 2012 10:27 pm Post subject: |
|
|
emerge -av1 evdev
Make sure that you have INPUT_DEVICES="evdev" set in your make config so it gets pulled automatically.
EDIT: VoidMage is correct. It should be emerge -1 xf86-input-evdev not emerge -1 evdev. I should stop posting package names from memory. _________________ First things first, but not necessarily in that order.
Last edited by The Doctor on Sat Nov 10, 2012 11:19 pm; edited 1 time in total |
|
| Back to top |
|
 |
VoidMage Advocate


Joined: 14 Oct 2006 Posts: 4810
|
Posted: Sat Nov 10, 2012 10:54 pm Post subject: |
|
|
| The Doctor wrote: | emerge -av1 evdev
Make sure that you have INPUT_DEVICES="evdev" set in your make config so it gets pulled automatically. |
that's 'emerge -1 xf86-input-evdev' - INPUT_DEVICES work via x11-base/xorg-drivers meta. |
|
| Back to top |
|
 |
Bia n00b

Joined: 27 May 2011 Posts: 64
|
Posted: Sat Nov 10, 2012 11:50 pm Post subject: |
|
|
| VoidMage wrote: | | The Doctor wrote: | emerge -av1 evdev
Make sure that you have INPUT_DEVICES="evdev" set in your make config so it gets pulled automatically. |
that's 'emerge -1 xf86-input-evdev' - INPUT_DEVICES work via x11-base/xorg-drivers meta. |
emerged but still the it did not recreate the folder xorg.conf.d  |
|
| Back to top |
|
 |
The Doctor l33t


Joined: 27 Jul 2010 Posts: 944
|
Posted: Sun Nov 11, 2012 12:01 am Post subject: |
|
|
That is odd.
I don't know if it will work, but here is my file if you want to try it:
| Code: | #
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.
Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection |
_________________ First things first, but not necessarily in that order. |
|
| Back to top |
|
 |
Bia n00b

Joined: 27 May 2011 Posts: 64
|
Posted: Sun Nov 11, 2012 12:08 am Post subject: |
|
|
| The Doctor wrote: | That is odd.
I don't know if it will work, but here is my file if you want to try it: |
Thank you kind sir, created dir and the file manualy and now it all works  |
|
| Back to top |
|
 |
|