Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
configurar teclado y mouse sin xf86-input-evdev
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Spanish
View previous topic :: View next topic  
Author Message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Sun Apr 10, 2016 8:42 pm    Post subject: configurar teclado y mouse sin xf86-input-evdev Reply with quote

por tener instalado ati-drivers que pide xorg 1.17 y por un problema(supongo error o no se) xf86-input-evdev pide exclusivamente xorg-1.18...
entonces ni puedo usar los drivers con 1.18 ni puedo usar teclado usando y ratón si uso 1.17...

¿existe hoy en dia una manera de poder configurar como antaño sin evdev , teclado y ratón bajo xorg.conf?....yo no lo he conseguido...

muchas gracias
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470


Last edited by papu on Mon Apr 11, 2016 9:22 pm; edited 1 time in total
Back to top
View user's profile Send private message
pacmac
Tux's lil' helper
Tux's lil' helper


Joined: 25 Apr 2003
Posts: 89

PostPosted: Sun Apr 10, 2016 9:28 pm    Post subject: Reply with quote

Tienes instalado algun paquete en su rama inestable que hace que tengas que instalar los paquetes xf86-input-evdev y xorg-server inestables. Investiga en /etc/portage/package.accept_keywords y en /etc/portage/package.use/*
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Sun Apr 10, 2016 11:28 pm    Post subject: Reply with quote

pacmac wrote:
Tienes instalado algun paquete en su rama inestable que hace que tengas que instalar los paquetes xf86-input-evdev y xorg-server inestables. Investiga en /etc/portage/package.accept_keywords y en /etc/portage/package.use/*


yo uso paquetes inestables, lo que quiero saber es si es posible configurar el teclado sin usar evdev...hasta arreglen el problema de no poder usar xf86-input-evdev por debajo de la versión de xorg.server-1.8

he conseguido configurar el raton usando xf86-input-mouse pero no el teclado usand xf86-input-keyboard aunque parece se detecta no funciona bien y escribe sin parar...signos.

antaño usando xf86-input-mouse y xf86-input-keyboard era facil usando xorg.conf pero parece esos paquetes ya no funcionan bien almenos el del kbd del teclado.
Quote:
Section "InputClass"
Identifier "ratolí"
MatchIsPointer "on"
Driver "mouse"
Option "Device" "/dev/input/mouse0"
Option "Buttons" "3"
Option "Protocol" "Auto"
EndSection

Section "InputClass"
Identifier "teclat"
MatchIsKeyboard "on"
Driver "kbd"
# Option "Device" "/dev/input/event21"
MatchDevicePath "/dev/input/event20"
Option "XkbLayout" "es"
Option "XkbModel" "pc105"
Option "XkdOptions" ""
EndSection


lo que me ocurre es lo que se menciona aquí https://forums.gentoo.org/viewtopic-t-1038698-highlight-atidrivers.html
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470


Last edited by papu on Mon Apr 11, 2016 9:23 pm; edited 1 time in total
Back to top
View user's profile Send private message
opotonil
l33t
l33t


Joined: 17 Jun 2005
Posts: 801
Location: 127.0.0.1

PostPosted: Mon Apr 11, 2016 8:05 am    Post subject: Reply with quote

Puedes probar con xf86-input-libinput a ver si hay suerte...

Salu2.
_________________
Localnet
Films Localnet
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Mon Apr 11, 2016 9:23 am    Post subject: Reply with quote

opotonil wrote:
Puedes probar con xf86-input-libinput a ver si hay suerte...

Salu2.


ya lo miré jaja pero esta (libinput) ...grrrrrr

lo que no entiendo es como usa evdev la gente que tiene xorg-server 1.17, que será la gran mayoria si xf86-input-evdev esta bloqueado...

también puede ser me este perdiendo algo...


:oops:
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470
Back to top
View user's profile Send private message
Eleazar Anzola
Veteran
Veteran


Joined: 17 Jul 2003
Posts: 1318
Location: Caracas / Venezuela

PostPosted: Mon Apr 11, 2016 2:30 pm    Post subject: Reply with quote

Así me ha funcionado a mi con el /etc/X11/xorg.conf
Code:

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "evdev"
        Option      "CoreKeyboard"
        Option      "XkbRules"  "xorg"
        Option      "XkbModel"  "pc105"
        Option      "XkbLayout" "es"
EndSection


Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "Buttons" "3"
        Option      "ZAxisMapping" "4 5 6 7"
        Option      "Emulate3Buttons" "0"
EndSection


Ahora lo quite y me funciona bien asi en el /etc/X11/xorg.conf.d/10-evdev.conf

Code:
Section "InputClass"
        Identifier "keyboard-all"
        Driver          "evdev"
        Option          "XkbLayout" "es"
        Option          "CoreKeyboard"
        Option          "XkbRules"  "xorg"
        Option          "XkbModel"  "pc105"
        MatchIsKeyboard "on"
EndSection


PD: Todos mis equipos están en la rama ~amd64 inestable total y funcionan sin problema
_________________
Salu2
Eleazar Anzola
Linux User : # 216232
__________________________________________
Por un foro ordenado y un buscador más útil:
[TEMA] Descripción problema (estado)
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Mon Apr 11, 2016 5:45 pm    Post subject: Reply with quote

Eleazar Anzola wrote:
Así me ha funcionado a mi con el /etc/X11/xorg.conf
Code:

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "evdev"
        Option      "CoreKeyboard"
        Option      "XkbRules"  "xorg"
        Option      "XkbModel"  "pc105"
        Option      "XkbLayout" "es"
EndSection


Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "Buttons" "3"
        Option      "ZAxisMapping" "4 5 6 7"
        Option      "Emulate3Buttons" "0"
EndSection


Ahora lo quite y me funciona bien asi en el /etc/X11/xorg.conf.d/10-evdev.conf

Code:
Section "InputClass"
        Identifier "keyboard-all"
        Driver          "evdev"
        Option          "XkbLayout" "es"
        Option          "CoreKeyboard"
        Option          "XkbRules"  "xorg"
        Option          "XkbModel"  "pc105"
        MatchIsKeyboard "on"
EndSection


PD: Todos mis equipos están en la rama ~amd64 inestable total y funcionan sin problema


no puedo usar INPUT_DEVICES="evdev" porque ati-drivers me pide xorg-server-1.7 y este tiene un bloqueo con xf86-input-evdev


¿usas ati-drivers?
¿cual es tu INPUT_DEVICES="" de tu make.conf?

de todas formas voy a provar a ver :)
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470
Back to top
View user's profile Send private message
pcmaster
Advocate
Advocate


Joined: 04 Dec 2003
Posts: 2222
Location: Barcelona

PostPosted: Mon Apr 11, 2016 9:30 pm    Post subject: Reply with quote

Yo uso:

# cat /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
EndSection

Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection

Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection[/code]

Tengo instalados tanto xf86-input-evdev como xf86-input-mouse y xf86-input-keyboard. Usa automáticamente los que necesita.

Code:
# emerge -av xf86-input-mouse xf86-input-keyboard xf86-input-evdev

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R    ] x11-drivers/xf86-input-mouse-1.9.1::gentoo  0 KiB
[ebuild   R    ] x11-drivers/xf86-input-keyboard-1.8.1::gentoo  0 KiB
[ebuild   R    ] x11-drivers/xf86-input-evdev-2.9.2::gentoo  0 KiB

Total: 3 packages (3 reinstalls), Size of downloads: 0 KiB

Would you like to merge these packages? [Yes/No]


Quizá alguno sea una reliquia del pasado...
A ver si te sirve.
_________________
pcmaster
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Mon Apr 11, 2016 10:50 pm    Post subject: Reply with quote

pcmaster wrote:
Yo uso:

# cat /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
EndSection

Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection

Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection[/code]

Tengo instalados tanto xf86-input-evdev como xf86-input-mouse y xf86-input-keyboard. Usa automáticamente los que necesita.

Code:
# emerge -av xf86-input-mouse xf86-input-keyboard xf86-input-evdev

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R    ] x11-drivers/xf86-input-mouse-1.9.1::gentoo  0 KiB
[ebuild   R    ] x11-drivers/xf86-input-keyboard-1.8.1::gentoo  0 KiB
[ebuild   R    ] x11-drivers/xf86-input-evdev-2.9.2::gentoo  0 KiB

Total: 3 packages (3 reinstalls), Size of downloads: 0 KiB

Would you like to merge these packages? [Yes/No]


Quizá alguno sea una reliquia del pasado...
A ver si te sirve.

en tu /etc/X11/xorg.conf solo hay configuración gafica , no se ni la version de tu xorg ni si usas paquetes inestables ni que drivers graficos usas...ni nada

si estas usando evdev se detecta todo automatico por lo tengo tener mouse y keyboard no tiene ninguna utilidad, ya que sin evdev , por lo que he sufrido estos dias en mis carnes solo funciona el mouse el tecaldo no ha habido manera..lo que manda es lo que tengáis en INPUT_DEVICES="evdev" que esta en make.conf , pero nadie me pega su make.conf que es lo importante para saber como tiene su gentoo configurado o mejor aun pega la salida de su emerge --info.

si se tiene INPUT_DEVICES="evdev" mouse y keyboard sobran entre otras cosas porque estan desfasados ( lo que es una lastima ya que si como en mi caso no va el evdev es una tortura configurar los input)

saludos,
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470
Back to top
View user's profile Send private message
cameta
Veteran
Veteran


Joined: 04 Aug 2004
Posts: 1320

PostPosted: Tue Apr 12, 2016 10:28 am    Post subject: Reply with quote

xf86-input-evdev NO ESTA BLOQUEADO.
Mi consejo
Code:
emerge --sync
emerge portage
emerge --update --deep --with-bdeps=y --newuse -q @world

_________________
Si algo falla LEE el jodido manual, Si sigue fallando LEE BIEN el jodido manual.
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Tue Apr 12, 2016 2:40 pm    Post subject: Reply with quote

cameta wrote:
xf86-input-evdev NO ESTA BLOQUEADO.
Mi consejo
Code:
emerge --sync
emerge portage
emerge --update --deep --with-bdeps=y --newuse -q @world


¿? hasta el momento de mi anterior post ( ahora estoy usando otra vez xf86-video-ati)

instalar ati-drivers requiere xorg-1.17, y el paquete xf86-input-evdev esta BLOQUEADO en xorg-1.17 por lo tanto no se puede usat ati-drivers y tener INPUT_DEVICES="evdev" a la vez, en consecuencia sin evdev no pude conseguir configurar mi teclado aunque si el mouse mediante xf86-input-mouse.

mi consejo: relea mi post en más profundidad si es tan amble, a veces en los post uno lee demasiado rapido , yo mismo :)

he tenido que volver a drivers libres por ese temporal bloqueo que repito hasta la hora de mi anterior post seguia vigente.


lo preocupante de todo esto como configurar teclado, mouse ...sin evdev, al estio de antaño mediante xorg.conf cuando se usaba xf86-input-mouse y xf86-input-keyboard , intenté usar xf86-video-input pero esta como (-libinput)

aprovecho para preguntar si libinput puede usare tambien con xorg o solo en wayland.

:wink:
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470
Back to top
View user's profile Send private message
cameta
Veteran
Veteran


Joined: 04 Aug 2004
Posts: 1320

PostPosted: Tue Apr 12, 2016 3:17 pm    Post subject: Reply with quote

Hola,
yo tengo instalados esos dos paquetes y no hay bloqueo.
Code:
tux mestres # emerge -pv xorg-server

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R    ] x11-base/xorg-server-1.17.4:0/1.17.4::gentoo  USE="glamor ipv6 nptl suid udev xorg -dmx -doc -kdrive (-libressl) -minimal (-selinux) -static-libs -systemd -tslib -unwind -wayland -xephyr -xnest -xvfb" 0 KiB

Total: 1 package (1 reinstall), Size of downloads: 0 KiB

 * IMPORTANT: 1 news items need reading for repository 'gentoo'.
 * Use eselect news read to view new items.

tux mestres # emerge -pv xf86-input-evdev

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R    ] x11-drivers/xf86-input-evdev-2.9.2::gentoo  0 KiB

Total: 1 package (1 reinstall), Size of downloads: 0 KiB

 * IMPORTANT: 1 news items need reading for repository 'gentoo'.
 * Use eselect news read to view new items.

tux mestres #

_________________
Si algo falla LEE el jodido manual, Si sigue fallando LEE BIEN el jodido manual.
Back to top
View user's profile Send private message
cameta
Veteran
Veteran


Joined: 04 Aug 2004
Posts: 1320

PostPosted: Tue Apr 12, 2016 3:20 pm    Post subject: Reply with quote

Te dejo también mi make.conf
Code:
# These settings were set by the catalyst build script that automatically
# built this stage.
# Please consult /usr/share/portage/config/make.conf.example for a more
# detailed example.
CFLAGS="-O2 -march=native -pipe"
CXXFLAGS="${CFLAGS}"
MAKEOPTS="-j9"
# WARNING: Changing your CHOST is not something that should be done lightly.
# Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing.
CHOST="x86_64-pc-linux-gnu"
# These are the USE flags that were used in addition to what is provided by the
# profile used for building.
USE="abi_x86_32 apng bindist gles gudev icu python scanner script sql sqlite python webkit "
INPUT_DEVICES="evdev"
VIDEO_CARDS="nouveau"
SANE_BACKENDS="hp"

PORTDIR="/usr/portage"
DISTDIR="${PORTDIR}/distfiles"
PKGDIR="${PORTDIR}/packages"
PORTAGE_ELOG_CLASSES="log warn error"
PORTAGE_ELOG_SYSTEM="save"
GENTOO_MIRRORS="http://gd.tuwien.ac.at/opsys/linux/gentoo/ http://gentoo-euetib.upc.es/mirror/gentoo/ http://mirror.iawnet.sandia.gov/gentoo/"

_________________
Si algo falla LEE el jodido manual, Si sigue fallando LEE BIEN el jodido manual.
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Tue Apr 12, 2016 3:26 pm    Post subject: Reply with quote

cameta wrote:
Te dejo también mi make.conf
Code:
# These settings were set by the catalyst build script that automatically
# built this stage.
# Please consult /usr/share/portage/config/make.conf.example for a more
# detailed example.
CFLAGS="-O2 -march=native -pipe"
CXXFLAGS="${CFLAGS}"
MAKEOPTS="-j9"
# WARNING: Changing your CHOST is not something that should be done lightly.
# Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing.
CHOST="x86_64-pc-linux-gnu"
# These are the USE flags that were used in addition to what is provided by the
# profile used for building.
USE="abi_x86_32 apng bindist gles gudev icu python scanner script sql sqlite python webkit "
INPUT_DEVICES="evdev"
VIDEO_CARDS="nouveau"
SANE_BACKENDS="hp"

PORTDIR="/usr/portage"
DISTDIR="${PORTDIR}/distfiles"
PKGDIR="${PORTDIR}/packages"
PORTAGE_ELOG_CLASSES="log warn error"
PORTAGE_ELOG_SYSTEM="save"
GENTOO_MIRRORS="http://gd.tuwien.ac.at/opsys/linux/gentoo/ http://gentoo-euetib.upc.es/mirror/gentoo/ http://mirror.iawnet.sandia.gov/gentoo/"


vamos a ver no veo ni que uses VIDEO_CARDS="fglrx" ni que tengas ati-drivers instalados,............estoy hablando de x11-drivers/ati-drivers el cual usa fglrx :)
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470


Last edited by papu on Tue Apr 12, 2016 3:30 pm; edited 4 times in total
Back to top
View user's profile Send private message
cameta
Veteran
Veteran


Joined: 04 Aug 2004
Posts: 1320

PostPosted: Tue Apr 12, 2016 3:26 pm    Post subject: Reply with quote

Yo te aconsejo que actualices portage en primer lugar ya que un portage obsoleto puede dar precisamente este tipo de problema de bloqueos.
_________________
Si algo falla LEE el jodido manual, Si sigue fallando LEE BIEN el jodido manual.
Back to top
View user's profile Send private message
cameta
Veteran
Veteran


Joined: 04 Aug 2004
Posts: 1320

PostPosted: Tue Apr 12, 2016 3:30 pm    Post subject: Reply with quote

Pon el mensaje que te da cuando intentas esto.
emerge -pv xf86-input-evdev
_________________
Si algo falla LEE el jodido manual, Si sigue fallando LEE BIEN el jodido manual.
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Tue Apr 12, 2016 3:34 pm    Post subject: Reply with quote

cameta wrote:
Pon el mensaje que te da cuando intentas esto.
emerge -pv xf86-input-evdev


a ver porfavor has intentado siquiera emerge -p ati-drivers? pero además tu estas usando nvidia y no tarjeta AMD :)


yo ahora estoy usando los drivers libres de AMD(xf86-video-ati) donde no existe bloqueo ya que permiten usar xorg-server-1.8
el problema esta con los drives binarios ( ati-drivers) no con los libres.
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470


Last edited by papu on Tue Apr 12, 2016 3:43 pm; edited 1 time in total
Back to top
View user's profile Send private message
cameta
Veteran
Veteran


Joined: 04 Aug 2004
Posts: 1320

PostPosted: Tue Apr 12, 2016 3:38 pm    Post subject: Reply with quote

Quote:
tux mestres # emerge -pv ati-drivers

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild N ] app-eselect/eselect-opencl-1.1.0-r1::gentoo 37 KiB
[ebuild N ] virtual/linux-sources-1::gentoo USE="-firmware" 0 KiB
[ebuild N ] sys-power/acpid-2.0.23::gentoo USE="(-selinux)" 151 KiB
[ebuild N ] x11-proto/xf86miscproto-0.9.3::gentoo 83 KiB
[ebuild N ] x11-drivers/ati-drivers-15.9-r1:1::gentoo USE="modules qt4 -debug -gdm-hack -pax_kernel -static-libs" ABI_X86="32 (64)" 177,319 KiB

Total: 5 packages (5 new), Size of downloads: 177,590 KiB

* IMPORTANT: 1 news items need reading for repository 'gentoo'.
* Use eselect news read to view new items.

tux mestres #

_________________
Si algo falla LEE el jodido manual, Si sigue fallando LEE BIEN el jodido manual.
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Tue Apr 12, 2016 3:44 pm    Post subject: Reply with quote

a mi no me deja pues :) de todas formas uso paquetes ~ y AMD , y tu ninguno de los dos
el problema viene del bloqueo que hay puesto por parte de desarrollador del a evdev a >xorg-driver-1.18 como bien esta documentado en los enlaces.

toca esperaro o bien usar los drivers libres.

en el fondo lo que me interesa saber realmene es COMO CONFIGURAR teclaro y raton SIN EVDEV, si es que esposible claro o ya no se puede.

Quote:
emerge -p ati-drivers

These are the packages that would be merged, in order:

Calculating dependencies ... done!
[ebuild N ] sys-power/acpid-2.0.27::gentoo USE="(-selinux)" 152 KiB
[ebuild N ] app-eselect/eselect-opencl-1.1.0-r4::gentoo 851 KiB
[ebuild UD ] x11-base/xorg-server-1.17.4:0/1.17.4::gentoo [1.18.3:0/1.18.3::gentoo] USE="glamor ipv6 nptl%* suid udev xorg -dmx -doc -kdrive -libressl -minimal (-selinux) -static-libs -systemd -tslib -unwind -wayland -xephyr -xnest -xvfb" 5656 KiB
[ebuild N ] x11-drivers/ati-drivers-15.12-r1:1::gentoo USE="modules -debug -gdm-hack -pax_kernel -qt4 -static-libs" ABI_X86="32 (64)" 181617 KiB

Total: 4 packages (1 downgrade, 3 new), Size of downloads: 188275 KiB

!!! Multiple package instances within a single package slot have been pulled
!!! into the dependency graph, resulting in a slot conflict:

x11-base/xorg-server:0

(x11-base/xorg-server-1.17.4:0/1.17.4::gentoo, ebuild scheduled for merge) pulled in by
<=x11-base/xorg-server-1.17.49[-minimal] required by (x11-drivers/ati-drivers-15.12-r1:1/1::gentoo, ebuild scheduled for merge)
^^ ^^^^^^^

(x11-base/xorg-server-1.18.3:0/1.18.3::gentoo, installed) pulled in by
x11-base/xorg-server:0/1.18.3= required by (x11-drivers/xf86-video-ati-7.7.0:0/0::gentoo, installed)
^^^^^^^^^^
>=x11-base/xorg-server-1.18[udev] required by (x11-drivers/xf86-input-evdev-2.10.1:0/0::gentoo, installed)
^^ ^^^^
x11-base/xorg-server:0/1.18.3= required by (x11-drivers/xf86-input-evdev-2.10.1:0/0::gentoo, installed)


Quote:
emerge -p =x11-drivers/ati-drivers-15.9-r1

These are the packages that would be merged, in order:

Calculating dependencies ... done!
[ebuild N ] sys-power/acpid-2.0.27::gentoo USE="(-selinux)" 152 KiB
[ebuild N ] app-eselect/eselect-opencl-1.1.0-r4::gentoo 851 KiB
[ebuild UD ] x11-base/xorg-server-1.17.4:0/1.17.4::gentoo [1.18.3:0/1.18.3::gentoo] USE="glamor ipv6 nptl%* suid udev xorg -dmx -doc -kdrive -libressl -minimal (-selinux) -static-libs -systemd -tslib -unwind -wayland -xephyr -xnest -xvfb" 5656 KiB
[ebuild N ] x11-drivers/ati-drivers-15.9-r1:1::gentoo USE="modules -debug -gdm-hack -pax_kernel -qt4 -static-libs" ABI_X86="32 (64)" 177319 KiB

Total: 4 packages (1 downgrade, 3 new), Size of downloads: 183977 KiB

!!! Multiple package instances within a single package slot have been pulled
!!! into the dependency graph, resulting in a slot conflict:

x11-base/xorg-server:0

(x11-base/xorg-server-1.17.4:0/1.17.4::gentoo, ebuild scheduled for merge) pulled in by
<=x11-base/xorg-server-1.17.49[-minimal] required by (x11-drivers/ati-drivers-15.9-r1:1/1::gentoo, ebuild scheduled for merge)
^^ ^^^^^^^

(x11-base/xorg-server-1.18.3:0/1.18.3::gentoo, installed) pulled in by
>=x11-base/xorg-server-1.18[udev] required by (x11-drivers/xf86-input-evdev-2.10.1:0/0::gentoo, installed)
^^ ^^^^
x11-base/xorg-server:0/1.18.3= required by (x11-drivers/xf86-video-ati-7.7.0:0/0::gentoo, installed)
^^^^^^^^^^
x11-base/xorg-server:0/1.18.3= required by (x11-drivers/xf86-input-evdev-2.10.1:0/0::gentoo, installed)
^^^^^^^^^^

_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470
Back to top
View user's profile Send private message
cameta
Veteran
Veteran


Joined: 04 Aug 2004
Posts: 1320

PostPosted: Tue Apr 12, 2016 3:59 pm    Post subject: Reply with quote

Lo que no entiendo es para que quieres usar los ati inestables.
_________________
Si algo falla LEE el jodido manual, Si sigue fallando LEE BIEN el jodido manual.
Back to top
View user's profile Send private message
papu
l33t
l33t


Joined: 25 Jan 2008
Posts: 709
Location: Sota algun pi o alzina...

PostPosted: Tue Apr 12, 2016 5:48 pm    Post subject: Reply with quote

cameta wrote:
Lo que no entiendo es para que quieres usar los ati inestables.


eso no importa realmente quiero saber como hacer que Xorg me detecte correctamente el teclado sin usar EVDEV, ni libinput ya que a dia de hoy esta como (-libinput)

usando Driver "kbd" se detecta pero no va bien , al teclear algo dentro X se vuelve loco y empieza a escribir solo y las teclas se presionan solas...
entonces el quiz de la cuestión realmente más alla de si uso ati-drivers o los libres, es poder configurar los input de forma alternativa a evdev

así que agradecría centraramos el tema en eso jejeje

:)
_________________
"~amd64" --cpu 7700 non-x --DDR5 2x16GB 6000MHz --gpu RX 470
Back to top
View user's profile Send private message
cameta
Veteran
Veteran


Joined: 04 Aug 2004
Posts: 1320

PostPosted: Tue Apr 12, 2016 9:09 pm    Post subject: Reply with quote

Quote:
eso no importa realmente quiero saber como hacer que Xorg me detecte correctamente el teclado sin usar EVDEV

Que tengas suerte,
_________________
Si algo falla LEE el jodido manual, Si sigue fallando LEE BIEN el jodido manual.
Back to top
View user's profile Send private message
quilosaq
Veteran
Veteran


Joined: 22 Dec 2009
Posts: 1522

PostPosted: Tue Apr 12, 2016 9:41 pm    Post subject: Reply with quote

papu wrote:
...
he conseguido configurar el raton usando xf86-input-mouse pero no el teclado usand xf86-input-keyboard aunque parece se detecta no funciona bien y escribe sin parar...signos.

antaño usando xf86-input-mouse y xf86-input-keyboard era facil usando xorg.conf pero parece esos paquetes ya no funcionan bien almenos el del kbd del teclado.
Quote:
Section "InputClass"
Identifier "ratolí"
MatchIsPointer "on"
Driver "mouse"
Option "Device" "/dev/input/mouse0"
Option "Buttons" "3"
Option "Protocol" "Auto"
EndSection

Section "InputClass"
Identifier "teclat"
MatchIsKeyboard "on"
Driver "kbd"
# Option "Device" "/dev/input/event21"
MatchDevicePath "/dev/input/event20"
Option "XkbLayout" "es"
Option "XkbModel" "pc105"
Option "XkdOptions" ""
EndSection

...

Prueba añadiendo esta sección a xorg.conf:
Code:
Section "ServerFlags"
   Option "AutoAddDevices" "off"
EndSection
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Spanish All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum