Page 1 sur 3

[Xorg] Récupérer MatchVendor et MatchProduct (Abandonné)

Publié : lun. 23 sept. 2013, 20:13
par Fork Bomb
Salut à tous et toutes !
Dans le cadre d’un projet personnel, j’aurais besoin de trouver le MatchProduct et le MatchVendor d’un périphérique donné afin de me servir de ces deux infos dans un des fichiers de conf de Xorg.
J’ai trouvé une piste [ici] mais pour l’instant, mes tests ne donnent rien.
Si quelqu’un à une idée…

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : lun. 23 sept. 2013, 20:21
par Ypnose
Essaie lsusb -v | grep -e "idVendor" -e "idProduct".

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : lun. 23 sept. 2013, 20:27
par Fork Bomb
J’ai déjà testé cette commande pour l’avoir trouvée pendant mes recherches. Une personne répond que ça ne fonctionne pas.
Sinon, je revenais pour ça :

Code : Tout sélectionner

udevadm info --query=all --path=$(udevadm info --query=path --name=/addr/dev/du/peripherique)
J’arrives pas à voir là-dedans ce qui pourrait être mon MatchProduct.

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : lun. 23 sept. 2013, 20:44
par Ypnose
Ta commande est sale.
Perso, quand j'essaie udevadm info --query=all --name=/dev/input/event0 | grep -e "VENDOR" -e "MODEL", j'obtiens bien ce que tu cherches.
Fork Bomb a écrit :J’arrives pas à voir là-dedans ce qui pourrait être mon MatchProduct.
C'est l'option --query=all qui retourne ce que tu cherches.
Par ailleurs, la commande précédente fonctionne aussi. Je l'avais utilisé pour établir mes règles Xorg, il y a un certain temps (en utilisant uniquement lsusb et en trouvant les ids correspondants).

EDIT: Tu peux même faire: udevadm info --query=all --root --name=input/event0

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 09:55
par tuxce
Fork Bomb a écrit : J’arrives pas à voir là-dedans ce qui pourrait être mon MatchProduct.
C'est la propriété NAME

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 10:26
par Fork Bomb
Ypnose a écrit :Ta commande est sale.
Perso, quand j'essaie udevadm info --query=all --name=/dev/input/event0 | grep -e "VENDOR" -e "MODEL", j'obtiens bien ce que tu cherches.
Fork Bomb a écrit :J’arrives pas à voir là-dedans ce qui pourrait être mon MatchProduct.
C'est l'option --query=all qui retourne ce que tu cherches.
Par ailleurs, la commande précédente fonctionne aussi. Je l'avais utilisé pour établir mes règles Xorg, il y a un certain temps (en utilisant uniquement lsusb et en trouvant les ids correspondants).

EDIT: Tu peux même faire: udevadm info --query=all --root --name=input/event0
J’ai eu beau essayer hier, y a pas eu moyen que ça fonctionne. C’est désespérant. Je ne sais pas ce que j’ai loupé, mais ça doit pas être grand chose.
tuxce a écrit :
Fork Bomb a écrit :J’arrives pas à voir là-dedans ce qui pourrait être mon MatchProduct.
C'est la propriété NAME
Le seul NAME que j’ai est le DEVNAME, soit l’adresse en /dev.

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 11:30
par tuxce
Quel est le périphérique dont tu essais d'avoir les infos ?
Peut être que tu donnes un périphérique trop spécifique, teste avec l'argument --attribute-walk , et dans ce cas, ça serait la variable ATTR{name}

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 11:43
par Fork Bomb
tuxce a écrit :Quel est le périphérique dont tu essais d'avoir les infos ?
Une manette de jeu.
tuxce a écrit :Peut être que tu donnes un périphérique trop spécifique, teste avec l'argument --atribute-walk , et dans ce cas, ça serait la variable ATTR{name}
L’idée est justement de choper une marque et un modéle en particulier pour dire au système que ce modèle de cette marque doit agir d’une certaine manière. Sans occuper des autres.

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 11:50
par Ypnose
Tu vois ta manette avec lsusb?

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 12:00
par Fork Bomb
Ypnose a écrit :Tu vois ta manette avec lsusb?
Oui, sans problème.
---
Dailleurs, vous avez besoin de la sortie d’une série de commandes ?

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 12:22
par Ypnose
Et bien avec lsusb -vv, tu devrais normalement avoir les renseignements que tu cherches, pour ta manette.
Oui, donne la sortie pour voir.

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 12:42
par tuxce
Fork Bomb a écrit : L’idée est justement de choper une marque et un modéle en particulier pour dire au système que ce modèle de cette marque doit agir d’une certaine manière.
nonnnnnnn, c'est vrai ? :mrgreen:
Fork Bomb a écrit :
tuxce a écrit :Quel est le périphérique dont tu essais d'avoir les infos ?
Une manette de jeu.
Le but de ma question était que si par exemple, tu faisais la requête sur /bus/usb/001/005 (qui chez moi correspond à la prise où est branché mon clavier), eh bien je t'aurais répondu qu'il fallait plutôt donner plus précis comme argument, par exemple /dev/input/event0 (tjs pour mon clavier)

Maintenant, tu peux aussi sortir la base et rechercher ton périphérique dessus (en cherchant ce qui s'affiche dans lsusb par exemple) :

Code : Tout sélectionner

udevadm info --query=all --export-db

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 13:19
par Fork Bomb
Ypnose a écrit :Et bien avec lsusb -vv, tu devrais normalement avoir les renseignements que tu cherches, pour ta manette.
Oui, donne la sortie pour voir.
Attention, c’est long.

lsusb -vv

Code : Tout sélectionner

Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            3.11
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0001 1.1 root hub
  bcdDevice            3.11
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval             255

Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0001 1.1 root hub
  bcdDevice            3.11
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval             255

Bus 006 Device 002: ID 1e54:2030 TypeMatrix 2030 USB Keyboard
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x1e54 TypeMatrix
  idProduct          0x2030 2030 USB Keyboard
  bcdDevice            1.30
  iManufacturer           1 
  iProduct                2 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           59
    bNumInterfaces          2
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      1 Keyboard
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      64
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      0 None
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      94
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10

Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0001 1.1 root hub
  bcdDevice            3.11
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval             255

Bus 005 Device 003: ID 07b5:0312 Mega World International, Ltd Gamepad
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x07b5 Mega World International, Ltd
  idProduct          0x0312 Gamepad
  bcdDevice            1.01
  iManufacturer           1 
  iProduct                2 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           34
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              350mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      0 No Subclass
      bInterfaceProtocol      0 None
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength     117
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10

Bus 005 Device 002: ID 046d:c05b Logitech, Inc. M-U0004 810-001317 [B110 Optical USB Mouse]
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x046d Logitech, Inc.
  idProduct          0xc05b M-U0004 810-001317 [B110 Optical USB Mouse]
  bcdDevice           54.00
  iManufacturer           1 
  iProduct                2 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           34
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower               98mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      2 Mouse
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      67
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0006  1x 6 bytes
        bInterval              10

Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0001 1.1 root hub
  bcdDevice            3.11
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval             255

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            3.11
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 004 Device 002: ID 046d:c216 Logitech, Inc. Dual Action Gamepad
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x046d Logitech, Inc.
  idProduct          0xc216 Dual Action Gamepad
  bcdDevice            3.00
  iManufacturer           1 
  iProduct                2 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           41
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower               30mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      0 No Subclass
      bInterfaceProtocol      0 None
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength     119
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10

Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0001 1.1 root hub
  bcdDevice            3.11
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval             255

Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0001 1.1 root hub
  bcdDevice            3.11
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval             255
tuxce a écrit :
Fork Bomb a écrit : L’idée est justement de choper une marque et un modéle en particulier pour dire au système que ce modèle de cette marque doit agir d’une certaine manière.
nonnnnnnn, c'est vrai ? :mrgreen:
Si si.
---
Désolé, je croyais que tu n’avais pas compris :/

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 13:32
par Ypnose
Ça serait pas ce que tu cherches par hasard?

Code : Tout sélectionner

Bus 005 Device 003: ID 07b5:0312 Mega World International, Ltd Gamepad
idVendor           0x07b5 Mega World International, Ltd
idProduct          0x0312 Gamepad

Bus 004 Device 002: ID 046d:c216 Logitech, Inc. Dual Action Gamepad
idVendor           0x046d Logitech, Inc.
idProduct          0xc216 Dual Action Gamepad

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 14:05
par Fork Bomb
- Si, mais ça marche pas…
- J’VAIS LE TUEEEEEEEEEEEEEEEEEEEEEEEEEERRRRRRRRRRRR !!!!!
-----------------
Bon, vous demander de l’aide en vous filant des infos au compte-goutte n’est pas la bonne méthode.
So, here is the picture.
J’ai deux manettes de jeu. Je voudrais en garder une pour jouer (la Logitech, très confortable) et l’autre pour contrôler le curseur de la souris (la MegaWorld).
J’ai déjà trouvé ces deux chaines de caractères et les insérer dans mon 50-joystick.conf que voici.

Code : Tout sélectionner

Section "InputClass"
    Identifier "joystick catchall"
    MatchIsJoystick "on"
    MatchVendor "Mega World International, Ltd"
    MatchProduct "Gamepad"
    MatchDevicePath "/dev/input/js1"
    Driver "evdev"
EndSection
J’ai déjà testé avec les autres chaînes trouvées et avec d’autres drivers, ça ne fait pas bouger le curseur d’un iota. Que xf86-input-joystick soit installé ou non ne change pas la donne.
C’est pourquoi j’ai ouvert ce topic.
Si vous avez des idées, je suis à l’écoute.

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 14:11
par benjarobin
Peux tu donner le log de Xorg avec la manette de branché au préalable.
Il faut donc que tu fasses 2 essais : donc 2 logs

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 14:27
par Fork Bomb
benjarobin a écrit :Peux tu donner le log de Xorg avec la manette de branché au préalable.
Il faut donc que tu fasses 2 essais : donc 2 logs
Je ne comprends comment tu comptes 2 essais.
Tu veux un log avec chacune des deux manettes seules ?

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 14:29
par benjarobin
Fork Bomb a écrit :Tu veux un log avec chacune des deux manettes seules ?
Oui

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 15:15
par Fork Bomb
Désolé pour l’attente, j’ai eu un soucis technique.
----
cat Xorg.0.log.Logitech.txt

Code : Tout sélectionner

[    13.507] 
X.Org X Server 1.14.3
Release Date: 2013-09-12
[    13.558] X Protocol Version 11, Revision 0
[    13.558] Build Operating System: Linux 3.11.0-1-ARCH i686 
[    13.558] Current Operating System: Linux kakariko 3.11.1-2-ARCH #1 SMP PREEMPT Sun Sep 22 20:03:40 CEST 2013 i686
[    13.558] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=fa6fbfda-ba09-45f5-99a8-0aeb8ac3d62b rw quiet init=/usr/lib/systemd/systemd
[    13.558] Build Date: 13 September 2013  01:31:03PM
[    13.558]  
[    13.558] Current version of pixman: 0.30.2
[    13.558] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    13.558] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    13.558] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Sep 24 14:48:50 2013
[    13.594] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    13.595] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    13.595] (==) No Layout section.  Using the first Screen section.
[    13.595] (==) No screen section available. Using defaults.
[    13.595] (**) |-->Screen "Default Screen Section" (0)
[    13.595] (**) |   |-->Monitor "<default monitor>"
[    13.601] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[    13.602] (**) |   |-->Device "Card0"
[    13.602] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    13.602] (==) Automatically adding devices
[    13.602] (==) Automatically enabling devices
[    13.602] (==) Automatically adding GPU devices
[    13.735] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[    13.735] (==) ModulePath set to "/usr/lib/xorg/modules"
[    13.736] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    13.748] (II) Loader magic: 0x8259620
[    13.748] (II) Module ABI versions:
[    13.748] 	X.Org ANSI C Emulation: 0.4
[    13.748] 	X.Org Video Driver: 14.1
[    13.748] 	X.Org XInput driver : 19.1
[    13.748] 	X.Org Server Extension : 7.0
[    13.749] (II) xfree86: Adding drm device (/dev/dri/card0)
[    13.751] (--) PCI:*(0:1:0:0) 10de:0326:1462:9982 rev 161, Mem @ 0xde000000/16777216, 0xd0000000/134217728, BIOS @ 0x????????/131072
[    13.766] Initializing built-in extension Generic Event Extension
[    13.766] Initializing built-in extension SHAPE
[    13.766] Initializing built-in extension MIT-SHM
[    13.766] Initializing built-in extension XInputExtension
[    13.766] Initializing built-in extension XTEST
[    13.766] Initializing built-in extension BIG-REQUESTS
[    13.766] Initializing built-in extension SYNC
[    13.766] Initializing built-in extension XKEYBOARD
[    13.766] Initializing built-in extension XC-MISC
[    13.766] Initializing built-in extension SECURITY
[    13.766] Initializing built-in extension XINERAMA
[    13.766] Initializing built-in extension XFIXES
[    13.766] Initializing built-in extension RENDER
[    13.766] Initializing built-in extension RANDR
[    13.766] Initializing built-in extension COMPOSITE
[    13.766] Initializing built-in extension DAMAGE
[    13.766] Initializing built-in extension MIT-SCREEN-SAVER
[    13.766] Initializing built-in extension DOUBLE-BUFFER
[    13.766] Initializing built-in extension RECORD
[    13.766] Initializing built-in extension DPMS
[    13.766] Initializing built-in extension X-Resource
[    13.766] Initializing built-in extension XVideo
[    13.766] Initializing built-in extension XVideo-MotionCompensation
[    13.766] Initializing built-in extension XFree86-VidModeExtension
[    13.767] Initializing built-in extension XFree86-DGA
[    13.767] Initializing built-in extension XFree86-DRI
[    13.767] Initializing built-in extension DRI2
[    13.767] (II) "glx" will be loaded by default.
[    13.767] (II) LoadModule: "dri2"
[    13.767] (II) Module "dri2" already built-in
[    13.767] (II) LoadModule: "glamoregl"
[    13.942] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    14.637] (II) Module glamoregl: vendor="X.Org Foundation"
[    14.637] 	compiled for 1.14.2, module version = 0.5.1
[    14.637] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    14.637] (II) LoadModule: "glx"
[    14.829] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    14.910] (II) Module glx: vendor="X.Org Foundation"
[    14.911] 	compiled for 1.14.3, module version = 1.0.0
[    14.911] 	ABI class: X.Org Server Extension, version 7.0
[    14.911] (==) AIGLX enabled
[    14.913] Loading extension GLX
[    14.913] (II) LoadModule: "nouveau"
[    14.913] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
[    14.930] (II) Module nouveau: vendor="X.Org Foundation"
[    14.930] 	compiled for 1.14.2, module version = 1.0.9
[    14.930] 	Module class: X.Org Video Driver
[    14.930] 	ABI class: X.Org Video Driver, version 14.1
[    14.930] (II) NOUVEAU driver 
[    14.930] (II) NOUVEAU driver for NVIDIA chipset families :
[    14.930] 	RIVA TNT        (NV04)
[    14.930] 	RIVA TNT2       (NV05)
[    14.930] 	GeForce 256     (NV10)
[    14.930] 	GeForce 2       (NV11, NV15)
[    14.930] 	GeForce 4MX     (NV17, NV18)
[    14.930] 	GeForce 3       (NV20)
[    14.930] 	GeForce 4Ti     (NV25, NV28)
[    14.930] 	GeForce FX      (NV3x)
[    14.930] 	GeForce 6       (NV4x)
[    14.931] 	GeForce 7       (G7x)
[    14.931] 	GeForce 8       (G8x)
[    14.931] 	GeForce GTX 200 (NVA0)
[    14.931] 	GeForce GTX 400 (NVC0)
[    14.931] (++) using VT number 1

[    14.931] (II) [drm] nouveau interface version: 1.1.1
[    14.932] (II) Loading sub module "dri2"
[    14.932] (II) LoadModule: "dri2"
[    14.932] (II) Module "dri2" already built-in
[    14.932] (--) NOUVEAU(0): Chipset: "NVIDIA NV34"
[    14.932] (II) NOUVEAU(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    14.932] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
[    14.932] (==) NOUVEAU(0): RGB weight 888
[    14.932] (==) NOUVEAU(0): Default visual is TrueColor
[    14.932] (==) NOUVEAU(0): Using HW cursor
[    14.932] (==) NOUVEAU(0): GLX sync to VBlank disabled.
[    14.932] (==) NOUVEAU(0): Page flipping enabled
[    14.932] (==) NOUVEAU(0): Swap limit set to 2 [Max allowed 2]
[    14.963] (II) NOUVEAU(0): Output VGA-1 has no monitor section
[    15.016] (II) NOUVEAU(0): Output TV-1 has no monitor section
[    15.019] (II) NOUVEAU(0): Output DVI-D-1 has no monitor section
[    15.050] (II) NOUVEAU(0): EDID for output VGA-1
[    15.050] (II) NOUVEAU(0): Manufacturer: ACR  Model: a8  Serial#: 2435972668
[    15.050] (II) NOUVEAU(0): Year: 2009  Week: 13
[    15.050] (II) NOUVEAU(0): EDID Version: 1.3
[    15.050] (II) NOUVEAU(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[    15.050] (II) NOUVEAU(0): Sync:  Separate
[    15.050] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 51  vert.: 29
[    15.050] (II) NOUVEAU(0): Gamma: 2.20
[    15.050] (II) NOUVEAU(0): DPMS capabilities: Off; RGB/Color Display
[    15.050] (II) NOUVEAU(0): First detailed timing is preferred mode
[    15.050] (II) NOUVEAU(0): redX: 0.640 redY: 0.330   greenX: 0.300 greenY: 0.600
[    15.050] (II) NOUVEAU(0): blueX: 0.150 blueY: 0.060   whiteX: 0.312 whiteY: 0.329
[    15.050] (II) NOUVEAU(0): Supported established timings:
[    15.050] (II) NOUVEAU(0): 720x400@70Hz
[    15.050] (II) NOUVEAU(0): 640x480@60Hz
[    15.050] (II) NOUVEAU(0): 640x480@67Hz
[    15.050] (II) NOUVEAU(0): 800x600@56Hz
[    15.050] (II) NOUVEAU(0): 800x600@60Hz
[    15.050] (II) NOUVEAU(0): 1024x768@60Hz
[    15.050] (II) NOUVEAU(0): 1024x768@70Hz
[    15.050] (II) NOUVEAU(0): Manufacturer's mask: 0
[    15.051] (II) NOUVEAU(0): Supported standard timings:
[    15.051] (II) NOUVEAU(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    15.051] (II) NOUVEAU(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    15.051] (II) NOUVEAU(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    15.051] (II) NOUVEAU(0): #3: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    15.051] (II) NOUVEAU(0): #4: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    15.051] (II) NOUVEAU(0): Supported detailed timing:
[    15.051] (II) NOUVEAU(0): clock: 148.5 MHz   Image Size:  510 x 287 mm
[    15.051] (II) NOUVEAU(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    15.051] (II) NOUVEAU(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    15.051] (II) NOUVEAU(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 185 MHz
[    15.051] (II) NOUVEAU(0): Serial No: LG1080044200
[    15.051] (II) NOUVEAU(0): Monitor name: ACER X233H
[    15.051] (II) NOUVEAU(0): EDID (in hex):
[    15.051] (II) NOUVEAU(0): 	00ffffffffffff000472a8003cfe3191
[    15.051] (II) NOUVEAU(0): 	0d13010368331d782aee91a3544c9926
[    15.051] (II) NOUVEAU(0): 	0f5054b30c00714f818095008100d1c0
[    15.051] (II) NOUVEAU(0): 	010101010101023a801871382d40582c
[    15.051] (II) NOUVEAU(0): 	4500fe1f1100001e000000fd00384b1e
[    15.051] (II) NOUVEAU(0): 	5312000a202020202020000000ff004c
[    15.051] (II) NOUVEAU(0): 	47313038303034343230300a000000fc
[    15.051] (II) NOUVEAU(0): 	00414345522058323333480a202000f9
[    15.051] (II) NOUVEAU(0): Printing probed modes for output VGA-1
[    15.051] (II) NOUVEAU(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    15.051] (II) NOUVEAU(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    15.051] (II) NOUVEAU(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    15.103] (II) NOUVEAU(0): EDID for output TV-1
[    15.105] (II) NOUVEAU(0): EDID for output DVI-D-1
[    15.105] (II) NOUVEAU(0): Output VGA-1 connected
[    15.105] (II) NOUVEAU(0): Output TV-1 disconnected
[    15.105] (II) NOUVEAU(0): Output DVI-D-1 disconnected
[    15.105] (II) NOUVEAU(0): Using exact sizes for initial modes
[    15.105] (II) NOUVEAU(0): Output VGA-1 using initial mode 1920x1080
[    15.105] (II) NOUVEAU(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    15.105] (--) NOUVEAU(0): Virtual size is 1920x1080 (pitch 0)
[    15.105] (**) NOUVEAU(0):  Driver mode "1920x1080": 148.5 MHz (scaled from 0.0 MHz), 67.5 kHz, 60.0 Hz
[    15.106] (II) NOUVEAU(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    15.106] (**) NOUVEAU(0):  Driver mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
[    15.106] (II) NOUVEAU(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "1440x900": 106.5 MHz (scaled from 0.0 MHz), 55.9 kHz, 59.9 Hz
[    15.106] (II) NOUVEAU(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "1280x800": 83.5 MHz (scaled from 0.0 MHz), 49.7 kHz, 59.8 Hz
[    15.106] (II) NOUVEAU(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
[    15.106] (II) NOUVEAU(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.1 Hz
[    15.106] (II) NOUVEAU(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
[    15.106] (II) NOUVEAU(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.3 Hz
[    15.106] (II) NOUVEAU(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.2 Hz
[    15.106] (II) NOUVEAU(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "640x480": 30.2 MHz (scaled from 0.0 MHz), 35.0 kHz, 66.7 Hz
[    15.106] (II) NOUVEAU(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
[    15.106] (II) NOUVEAU(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    15.106] (**) NOUVEAU(0):  Driver mode "720x400": 28.3 MHz (scaled from 0.0 MHz), 31.5 kHz, 70.1 Hz
[    15.106] (II) NOUVEAU(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    15.106] (==) NOUVEAU(0): DPI set to (96, 96)
[    15.106] (II) Loading sub module "fb"
[    15.106] (II) LoadModule: "fb"
[    15.107] (II) Loading /usr/lib/xorg/modules/libfb.so
[    16.023] (II) Module fb: vendor="X.Org Foundation"
[    16.023] 	compiled for 1.14.3, module version = 1.0.0
[    16.023] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    16.023] (II) Loading sub module "exa"
[    16.023] (II) LoadModule: "exa"
[    16.023] (II) Loading /usr/lib/xorg/modules/libexa.so
[    16.182] (II) Module exa: vendor="X.Org Foundation"
[    16.182] 	compiled for 1.14.3, module version = 2.6.0
[    16.182] 	ABI class: X.Org Video Driver, version 14.1
[    16.182] (II) Loading sub module "shadowfb"
[    16.182] (II) LoadModule: "shadowfb"
[    16.182] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
[    16.190] (II) Module shadowfb: vendor="X.Org Foundation"
[    16.190] 	compiled for 1.14.3, module version = 1.0.0
[    16.190] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    16.190] (--) Depth 24 pixmap format is 32 bpp
[    16.191] (II) NOUVEAU(0): Opened GPU channel 0
[    16.212] (II) NOUVEAU(0): [DRI2] Setup complete
[    16.213] (II) NOUVEAU(0): [DRI2]   DRI driver: nouveau
[    16.213] (II) NOUVEAU(0): [DRI2]   VDPAU driver: nouveau
[    16.222] (II) EXA(0): Driver allocated offscreen pixmaps
[    16.222] (II) EXA(0): Driver registered support for the following operations:
[    16.222] (II)         Solid
[    16.222] (II)         Copy
[    16.222] (II)         Composite (RENDER acceleration)
[    16.222] (II)         UploadToScreen
[    16.222] (II)         DownloadFromScreen
[    16.222] (==) NOUVEAU(0): Backing store disabled
[    16.222] (==) NOUVEAU(0): Silken mouse enabled
[    16.223] (II) NOUVEAU(0): [XvMC] Associated with NV30 texture adapter.
[    16.223] (II) NOUVEAU(0): [XvMC] Extension initialized.
[    16.223] (==) NOUVEAU(0): DPMS enabled
[    16.223] (II) NOUVEAU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    16.226] (--) RandR disabled
[    17.818] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    17.818] (II) AIGLX: enabled GLX_INTEL_swap_event
[    17.818] (II) AIGLX: enabled GLX_ARB_create_context
[    17.818] (II) AIGLX: enabled GLX_ARB_create_context_profile
[    17.818] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[    17.818] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    17.818] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    17.819] (II) AIGLX: Loaded and initialized nouveau
[    17.819] (II) GLX: Initialized DRI2 GL provider for screen 0
[    17.829] (II) NOUVEAU(0): NVEnterVT is called.
[    17.829] (II) NOUVEAU(0): Setting screen physical size to 507 x 285
[    17.829] resize called 1920 1080
[    18.723] (II) config/udev: Adding input device Power Button (/dev/input/event6)
[    18.723] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    18.723] (II) LoadModule: "evdev"
[    18.724] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    18.754] (II) Module evdev: vendor="X.Org Foundation"
[    18.755] 	compiled for 1.14.2, module version = 2.8.1
[    18.755] 	Module class: X.Org XInput Driver
[    18.755] 	ABI class: X.Org XInput driver, version 19.1
[    18.755] (II) Using input driver 'evdev' for 'Power Button'
[    18.755] (**) Power Button: always reports core events
[    18.755] (**) evdev: Power Button: Device: "/dev/input/event6"
[    18.755] (--) evdev: Power Button: Vendor 0 Product 0x1
[    18.755] (--) evdev: Power Button: Found keys
[    18.755] (II) evdev: Power Button: Configuring as keyboard
[    18.755] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
[    18.755] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    18.755] (**) Option "xkb_rules" "evdev"
[    18.755] (**) Option "xkb_model" "pc105"
[    18.755] (**) Option "xkb_layout" "fr"
[    18.755] (**) Option "xkb_variant" "latin9"
[    18.820] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[    18.820] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    18.820] (II) Using input driver 'evdev' for 'Power Button'
[    18.820] (**) Power Button: always reports core events
[    18.820] (**) evdev: Power Button: Device: "/dev/input/event4"
[    18.820] (--) evdev: Power Button: Vendor 0 Product 0x1
[    18.820] (--) evdev: Power Button: Found keys
[    18.820] (II) evdev: Power Button: Configuring as keyboard
[    18.820] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
[    18.820] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    18.821] (**) Option "xkb_rules" "evdev"
[    18.821] (**) Option "xkb_model" "pc105"
[    18.821] (**) Option "xkb_layout" "fr"
[    18.821] (**) Option "xkb_variant" "latin9"
[    18.822] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
[    18.822] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    18.822] (II) Using input driver 'evdev' for 'Sleep Button'
[    18.822] (**) Sleep Button: always reports core events
[    18.822] (**) evdev: Sleep Button: Device: "/dev/input/event5"
[    18.822] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    18.822] (--) evdev: Sleep Button: Found keys
[    18.822] (II) evdev: Sleep Button: Configuring as keyboard
[    18.822] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5/event5"
[    18.822] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[    18.822] (**) Option "xkb_rules" "evdev"
[    18.822] (**) Option "xkb_model" "pc105"
[    18.822] (**) Option "xkb_layout" "fr"
[    18.822] (**) Option "xkb_variant" "latin9"
[    18.823] (II) config/udev: Adding drm device (/dev/dri/card0)
[    18.824] (II) config/udev: Adding input device Logitech Logitech Dual Action (/dev/input/event0)
[    18.824] (II) No input driver specified, ignoring this device.
[    18.824] (II) This device may have been added with another device file.
[    18.825] (II) config/udev: Adding input device Logitech Logitech Dual Action (/dev/input/js0)
[    18.825] (II) No input driver specified, ignoring this device.
[    18.825] (II) This device may have been added with another device file.
[    18.826] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event1)
[    18.826] (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[    18.826] (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
[    18.826] (**) Logitech USB Optical Mouse: always reports core events
[    18.826] (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event1"
[    18.826] (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05b
[    18.826] (--) evdev: Logitech USB Optical Mouse: Found 12 mouse buttons
[    18.826] (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
[    18.826] (--) evdev: Logitech USB Optical Mouse: Found relative axes
[    18.826] (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
[    18.826] (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
[    18.826] (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
[    18.826] (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
[    18.826] (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    18.826] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:10.0/usb5/5-1/5-1:1.0/input/input1/event1"
[    18.827] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 9)
[    18.827] (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
[    18.827] (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
[    18.827] (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
[    18.827] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[    18.827] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[    18.828] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
[    18.828] (II) No input driver specified, ignoring this device.
[    18.828] (II) This device may have been added with another device file.
[    18.829] (II) config/udev: Adding input device TypeMatrix.com USB Keyboard (/dev/input/event2)
[    18.829] (**) TypeMatrix.com USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    18.829] (**) TypeMatrix.com USB Keyboard: Applying InputClass "Typematrix Bepo"
[    18.829] (II) Using input driver 'evdev' for 'TypeMatrix.com USB Keyboard'
[    18.829] (**) TypeMatrix.com USB Keyboard: always reports core events
[    18.829] (**) evdev: TypeMatrix.com USB Keyboard: Device: "/dev/input/event2"
[    18.829] (--) evdev: TypeMatrix.com USB Keyboard: Vendor 0x1e54 Product 0x2030
[    18.829] (--) evdev: TypeMatrix.com USB Keyboard: Found keys
[    18.829] (II) evdev: TypeMatrix.com USB Keyboard: Configuring as keyboard
[    18.829] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:10.1/usb6/6-1/6-1:1.0/input/input2/event2"
[    18.829] (II) XINPUT: Adding extended input device "TypeMatrix.com USB Keyboard" (type: KEYBOARD, id 10)
[    18.829] (**) Option "xkb_rules" "evdev"
[    18.829] (**) Option "xkb_model" "pc105"
[    18.829] (**) Option "xkb_layout" "fr"
[    18.829] (**) Option "xkb_variant" "bepo"
[    18.829] (**) Option "xkb_options" "compose:lwin,grp:ctrls_toggle,lv3:ralt_switch"
[    18.883] (II) config/udev: Adding input device TypeMatrix.com USB Keyboard (/dev/input/event3)
[    18.883] (**) TypeMatrix.com USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    18.883] (**) TypeMatrix.com USB Keyboard: Applying InputClass "Typematrix Bepo"
[    18.883] (II) Using input driver 'evdev' for 'TypeMatrix.com USB Keyboard'
[    18.883] (**) TypeMatrix.com USB Keyboard: always reports core events
[    18.883] (**) evdev: TypeMatrix.com USB Keyboard: Device: "/dev/input/event3"
[    18.883] (--) evdev: TypeMatrix.com USB Keyboard: Vendor 0x1e54 Product 0x2030
[    18.883] (--) evdev: TypeMatrix.com USB Keyboard: Found 1 mouse buttons
[    18.883] (--) evdev: TypeMatrix.com USB Keyboard: Found scroll wheel(s)
[    18.883] (--) evdev: TypeMatrix.com USB Keyboard: Found relative axes
[    18.883] (II) evdev: TypeMatrix.com USB Keyboard: Forcing relative x/y axes to exist.
[    18.883] (--) evdev: TypeMatrix.com USB Keyboard: Found absolute axes
[    18.883] (II) evdev: TypeMatrix.com USB Keyboard: Forcing absolute x/y axes to exist.
[    18.883] (--) evdev: TypeMatrix.com USB Keyboard: Found keys
[    18.883] (II) evdev: TypeMatrix.com USB Keyboard: Configuring as mouse
[    18.883] (II) evdev: TypeMatrix.com USB Keyboard: Configuring as keyboard
[    18.883] (II) evdev: TypeMatrix.com USB Keyboard: Adding scrollwheel support
[    18.883] (**) evdev: TypeMatrix.com USB Keyboard: YAxisMapping: buttons 4 and 5
[    18.883] (**) evdev: TypeMatrix.com USB Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    18.883] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:10.1/usb6/6-1/6-1:1.1/input/input3/event3"
[    18.883] (II) XINPUT: Adding extended input device "TypeMatrix.com USB Keyboard" (type: KEYBOARD, id 11)
[    18.883] (**) Option "xkb_rules" "evdev"
[    18.884] (**) Option "xkb_model" "pc105"
[    18.884] (**) Option "xkb_layout" "fr"
[    18.884] (**) Option "xkb_variant" "bepo"
[    18.884] (**) Option "xkb_options" "compose:lwin,grp:ctrls_toggle,lv3:ralt_switch"
[    18.884] (II) evdev: TypeMatrix.com USB Keyboard: initialized for relative axes.
[    18.884] (WW) evdev: TypeMatrix.com USB Keyboard: ignoring absolute axes.
[    18.885] (**) TypeMatrix.com USB Keyboard: (accel) keeping acceleration scheme 1
[    18.885] (**) TypeMatrix.com USB Keyboard: (accel) acceleration profile 0
[    18.885] (**) TypeMatrix.com USB Keyboard: (accel) acceleration factor: 2.000
[    18.885] (**) TypeMatrix.com USB Keyboard: (accel) acceleration threshold: 4
[    18.885] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[    18.885] (II) No input driver specified, ignoring this device.
[    18.886] (II) This device may have been added with another device file.
[    24.153] (II) AIGLX: Suspending AIGLX clients for VT switch
[    24.153] (II) NOUVEAU(0): NVLeaveVT is called.
----
cat Xorg.0.log.MegaWorld.txt

Code : Tout sélectionner

[    12.583] 
X.Org X Server 1.14.3
Release Date: 2013-09-12
[    12.637] X Protocol Version 11, Revision 0
[    12.637] Build Operating System: Linux 3.11.0-1-ARCH i686 
[    12.637] Current Operating System: Linux kakariko 3.11.1-2-ARCH #1 SMP PREEMPT Sun Sep 22 20:03:40 CEST 2013 i686
[    12.637] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=fa6fbfda-ba09-45f5-99a8-0aeb8ac3d62b rw quiet init=/usr/lib/systemd/systemd
[    12.637] Build Date: 13 September 2013  01:31:03PM
[    12.637]  
[    12.637] Current version of pixman: 0.30.2
[    12.637] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    12.637] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    12.637] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Sep 24 14:44:43 2013
[    12.719] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    12.719] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    12.720] (==) No Layout section.  Using the first Screen section.
[    12.720] (==) No screen section available. Using defaults.
[    12.720] (**) |-->Screen "Default Screen Section" (0)
[    12.720] (**) |   |-->Monitor "<default monitor>"
[    12.730] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[    12.731] (**) |   |-->Device "Card0"
[    12.731] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    12.731] (==) Automatically adding devices
[    12.731] (==) Automatically enabling devices
[    12.731] (==) Automatically adding GPU devices
[    12.881] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[    12.881] (==) ModulePath set to "/usr/lib/xorg/modules"
[    12.881] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    12.902] (II) Loader magic: 0x8259620
[    12.902] (II) Module ABI versions:
[    12.902] 	X.Org ANSI C Emulation: 0.4
[    12.902] 	X.Org Video Driver: 14.1
[    12.902] 	X.Org XInput driver : 19.1
[    12.902] 	X.Org Server Extension : 7.0
[    12.903] (II) xfree86: Adding drm device (/dev/dri/card0)
[    12.905] (--) PCI:*(0:1:0:0) 10de:0326:1462:9982 rev 161, Mem @ 0xde000000/16777216, 0xd0000000/134217728, BIOS @ 0x????????/131072
[    12.920] Initializing built-in extension Generic Event Extension
[    12.920] Initializing built-in extension SHAPE
[    12.920] Initializing built-in extension MIT-SHM
[    12.920] Initializing built-in extension XInputExtension
[    12.920] Initializing built-in extension XTEST
[    12.920] Initializing built-in extension BIG-REQUESTS
[    12.920] Initializing built-in extension SYNC
[    12.920] Initializing built-in extension XKEYBOARD
[    12.920] Initializing built-in extension XC-MISC
[    12.920] Initializing built-in extension SECURITY
[    12.920] Initializing built-in extension XINERAMA
[    12.920] Initializing built-in extension XFIXES
[    12.920] Initializing built-in extension RENDER
[    12.920] Initializing built-in extension RANDR
[    12.920] Initializing built-in extension COMPOSITE
[    12.920] Initializing built-in extension DAMAGE
[    12.920] Initializing built-in extension MIT-SCREEN-SAVER
[    12.920] Initializing built-in extension DOUBLE-BUFFER
[    12.920] Initializing built-in extension RECORD
[    12.920] Initializing built-in extension DPMS
[    12.920] Initializing built-in extension X-Resource
[    12.921] Initializing built-in extension XVideo
[    12.921] Initializing built-in extension XVideo-MotionCompensation
[    12.921] Initializing built-in extension XFree86-VidModeExtension
[    12.921] Initializing built-in extension XFree86-DGA
[    12.921] Initializing built-in extension XFree86-DRI
[    12.921] Initializing built-in extension DRI2
[    12.921] (II) "glx" will be loaded by default.
[    12.921] (II) LoadModule: "dri2"
[    12.921] (II) Module "dri2" already built-in
[    12.921] (II) LoadModule: "glamoregl"
[    13.054] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    13.558] (II) Module glamoregl: vendor="X.Org Foundation"
[    13.558] 	compiled for 1.14.2, module version = 0.5.1
[    13.558] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    13.558] (II) LoadModule: "glx"
[    13.583] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    13.748] (II) Module glx: vendor="X.Org Foundation"
[    13.748] 	compiled for 1.14.3, module version = 1.0.0
[    13.748] 	ABI class: X.Org Server Extension, version 7.0
[    13.748] (==) AIGLX enabled
[    13.750] Loading extension GLX
[    13.750] (II) LoadModule: "nouveau"
[    13.751] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
[    13.984] (II) Module nouveau: vendor="X.Org Foundation"
[    13.984] 	compiled for 1.14.2, module version = 1.0.9
[    13.984] 	Module class: X.Org Video Driver
[    13.984] 	ABI class: X.Org Video Driver, version 14.1
[    13.984] (II) NOUVEAU driver 
[    13.984] (II) NOUVEAU driver for NVIDIA chipset families :
[    13.984] 	RIVA TNT        (NV04)
[    13.985] 	RIVA TNT2       (NV05)
[    13.985] 	GeForce 256     (NV10)
[    13.985] 	GeForce 2       (NV11, NV15)
[    13.985] 	GeForce 4MX     (NV17, NV18)
[    13.985] 	GeForce 3       (NV20)
[    13.985] 	GeForce 4Ti     (NV25, NV28)
[    13.985] 	GeForce FX      (NV3x)
[    13.985] 	GeForce 6       (NV4x)
[    13.985] 	GeForce 7       (G7x)
[    13.985] 	GeForce 8       (G8x)
[    13.985] 	GeForce GTX 200 (NVA0)
[    13.985] 	GeForce GTX 400 (NVC0)
[    13.985] (++) using VT number 1

[    13.986] (II) [drm] nouveau interface version: 1.1.1
[    13.986] (II) Loading sub module "dri2"
[    13.986] (II) LoadModule: "dri2"
[    13.986] (II) Module "dri2" already built-in
[    13.987] (--) NOUVEAU(0): Chipset: "NVIDIA NV34"
[    13.987] (II) NOUVEAU(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    13.987] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
[    13.987] (==) NOUVEAU(0): RGB weight 888
[    13.987] (==) NOUVEAU(0): Default visual is TrueColor
[    13.987] (==) NOUVEAU(0): Using HW cursor
[    13.987] (==) NOUVEAU(0): GLX sync to VBlank disabled.
[    13.987] (==) NOUVEAU(0): Page flipping enabled
[    13.987] (==) NOUVEAU(0): Swap limit set to 2 [Max allowed 2]
[    14.018] (II) NOUVEAU(0): Output VGA-1 has no monitor section
[    14.070] (II) NOUVEAU(0): Output TV-1 has no monitor section
[    14.072] (II) NOUVEAU(0): Output DVI-D-1 has no monitor section
[    14.107] (II) NOUVEAU(0): EDID for output VGA-1
[    14.108] (II) NOUVEAU(0): Manufacturer: ACR  Model: a8  Serial#: 2435972668
[    14.108] (II) NOUVEAU(0): Year: 2009  Week: 13
[    14.108] (II) NOUVEAU(0): EDID Version: 1.3
[    14.108] (II) NOUVEAU(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[    14.108] (II) NOUVEAU(0): Sync:  Separate
[    14.108] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 51  vert.: 29
[    14.108] (II) NOUVEAU(0): Gamma: 2.20
[    14.108] (II) NOUVEAU(0): DPMS capabilities: Off; RGB/Color Display
[    14.108] (II) NOUVEAU(0): First detailed timing is preferred mode
[    14.108] (II) NOUVEAU(0): redX: 0.640 redY: 0.330   greenX: 0.300 greenY: 0.600
[    14.108] (II) NOUVEAU(0): blueX: 0.150 blueY: 0.060   whiteX: 0.312 whiteY: 0.329
[    14.108] (II) NOUVEAU(0): Supported established timings:
[    14.108] (II) NOUVEAU(0): 720x400@70Hz
[    14.108] (II) NOUVEAU(0): 640x480@60Hz
[    14.108] (II) NOUVEAU(0): 640x480@67Hz
[    14.108] (II) NOUVEAU(0): 800x600@56Hz
[    14.108] (II) NOUVEAU(0): 800x600@60Hz
[    14.108] (II) NOUVEAU(0): 1024x768@60Hz
[    14.108] (II) NOUVEAU(0): 1024x768@70Hz
[    14.108] (II) NOUVEAU(0): Manufacturer's mask: 0
[    14.108] (II) NOUVEAU(0): Supported standard timings:
[    14.108] (II) NOUVEAU(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    14.108] (II) NOUVEAU(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    14.108] (II) NOUVEAU(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    14.108] (II) NOUVEAU(0): #3: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    14.108] (II) NOUVEAU(0): #4: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    14.108] (II) NOUVEAU(0): Supported detailed timing:
[    14.108] (II) NOUVEAU(0): clock: 148.5 MHz   Image Size:  510 x 287 mm
[    14.108] (II) NOUVEAU(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    14.108] (II) NOUVEAU(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    14.108] (II) NOUVEAU(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 185 MHz
[    14.108] (II) NOUVEAU(0): Serial No: LG1080044200
[    14.108] (II) NOUVEAU(0): Monitor name: ACER X233H
[    14.108] (II) NOUVEAU(0): EDID (in hex):
[    14.108] (II) NOUVEAU(0): 	00ffffffffffff000472a8003cfe3191
[    14.108] (II) NOUVEAU(0): 	0d13010368331d782aee91a3544c9926
[    14.108] (II) NOUVEAU(0): 	0f5054b30c00714f818095008100d1c0
[    14.108] (II) NOUVEAU(0): 	010101010101023a801871382d40582c
[    14.109] (II) NOUVEAU(0): 	4500fe1f1100001e000000fd00384b1e
[    14.109] (II) NOUVEAU(0): 	5312000a202020202020000000ff004c
[    14.109] (II) NOUVEAU(0): 	47313038303034343230300a000000fc
[    14.109] (II) NOUVEAU(0): 	00414345522058323333480a202000f9
[    14.109] (II) NOUVEAU(0): Printing probed modes for output VGA-1
[    14.109] (II) NOUVEAU(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    14.109] (II) NOUVEAU(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    14.109] (II) NOUVEAU(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    14.160] (II) NOUVEAU(0): EDID for output TV-1
[    14.162] (II) NOUVEAU(0): EDID for output DVI-D-1
[    14.162] (II) NOUVEAU(0): Output VGA-1 connected
[    14.162] (II) NOUVEAU(0): Output TV-1 disconnected
[    14.162] (II) NOUVEAU(0): Output DVI-D-1 disconnected
[    14.162] (II) NOUVEAU(0): Using exact sizes for initial modes
[    14.162] (II) NOUVEAU(0): Output VGA-1 using initial mode 1920x1080
[    14.162] (II) NOUVEAU(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    14.162] (--) NOUVEAU(0): Virtual size is 1920x1080 (pitch 0)
[    14.162] (**) NOUVEAU(0):  Driver mode "1920x1080": 148.5 MHz (scaled from 0.0 MHz), 67.5 kHz, 60.0 Hz
[    14.162] (II) NOUVEAU(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    14.162] (**) NOUVEAU(0):  Driver mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
[    14.162] (II) NOUVEAU(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    14.162] (**) NOUVEAU(0):  Driver mode "1440x900": 106.5 MHz (scaled from 0.0 MHz), 55.9 kHz, 59.9 Hz
[    14.163] (II) NOUVEAU(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "1280x800": 83.5 MHz (scaled from 0.0 MHz), 49.7 kHz, 59.8 Hz
[    14.163] (II) NOUVEAU(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
[    14.163] (II) NOUVEAU(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.1 Hz
[    14.163] (II) NOUVEAU(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
[    14.163] (II) NOUVEAU(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.3 Hz
[    14.163] (II) NOUVEAU(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.2 Hz
[    14.163] (II) NOUVEAU(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "640x480": 30.2 MHz (scaled from 0.0 MHz), 35.0 kHz, 66.7 Hz
[    14.163] (II) NOUVEAU(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
[    14.163] (II) NOUVEAU(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    14.163] (**) NOUVEAU(0):  Driver mode "720x400": 28.3 MHz (scaled from 0.0 MHz), 31.5 kHz, 70.1 Hz
[    14.163] (II) NOUVEAU(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    14.163] (==) NOUVEAU(0): DPI set to (96, 96)
[    14.163] (II) Loading sub module "fb"
[    14.163] (II) LoadModule: "fb"
[    14.164] (II) Loading /usr/lib/xorg/modules/libfb.so
[    14.201] (II) Module fb: vendor="X.Org Foundation"
[    14.201] 	compiled for 1.14.3, module version = 1.0.0
[    14.201] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    14.201] (II) Loading sub module "exa"
[    14.202] (II) LoadModule: "exa"
[    14.202] (II) Loading /usr/lib/xorg/modules/libexa.so
[    14.219] (II) Module exa: vendor="X.Org Foundation"
[    14.219] 	compiled for 1.14.3, module version = 2.6.0
[    14.219] 	ABI class: X.Org Video Driver, version 14.1
[    14.219] (II) Loading sub module "shadowfb"
[    14.219] (II) LoadModule: "shadowfb"
[    14.220] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
[    14.311] (II) Module shadowfb: vendor="X.Org Foundation"
[    14.311] 	compiled for 1.14.3, module version = 1.0.0
[    14.311] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    14.311] (--) Depth 24 pixmap format is 32 bpp
[    14.312] (II) NOUVEAU(0): Opened GPU channel 0
[    14.358] (II) NOUVEAU(0): [DRI2] Setup complete
[    14.358] (II) NOUVEAU(0): [DRI2]   DRI driver: nouveau
[    14.358] (II) NOUVEAU(0): [DRI2]   VDPAU driver: nouveau
[    14.403] (II) EXA(0): Driver allocated offscreen pixmaps
[    14.403] (II) EXA(0): Driver registered support for the following operations:
[    14.403] (II)         Solid
[    14.403] (II)         Copy
[    14.403] (II)         Composite (RENDER acceleration)
[    14.403] (II)         UploadToScreen
[    14.403] (II)         DownloadFromScreen
[    14.403] (==) NOUVEAU(0): Backing store disabled
[    14.403] (==) NOUVEAU(0): Silken mouse enabled
[    14.425] (II) NOUVEAU(0): [XvMC] Associated with NV30 texture adapter.
[    14.425] (II) NOUVEAU(0): [XvMC] Extension initialized.
[    14.425] (==) NOUVEAU(0): DPMS enabled
[    14.425] (II) NOUVEAU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    14.449] (--) RandR disabled
[    16.605] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    16.605] (II) AIGLX: enabled GLX_INTEL_swap_event
[    16.605] (II) AIGLX: enabled GLX_ARB_create_context
[    16.605] (II) AIGLX: enabled GLX_ARB_create_context_profile
[    16.605] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[    16.605] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    16.605] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    16.607] (II) AIGLX: Loaded and initialized nouveau
[    16.607] (II) GLX: Initialized DRI2 GL provider for screen 0
[    16.617] (II) NOUVEAU(0): NVEnterVT is called.
[    16.617] (II) NOUVEAU(0): Setting screen physical size to 507 x 285
[    16.617] resize called 1920 1080
[    17.798] (II) config/udev: Adding input device Power Button (/dev/input/event6)
[    17.798] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    17.798] (II) LoadModule: "evdev"
[    17.799] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    17.874] (II) Module evdev: vendor="X.Org Foundation"
[    17.874] 	compiled for 1.14.2, module version = 2.8.1
[    17.874] 	Module class: X.Org XInput Driver
[    17.874] 	ABI class: X.Org XInput driver, version 19.1
[    17.874] (II) Using input driver 'evdev' for 'Power Button'
[    17.874] (**) Power Button: always reports core events
[    17.874] (**) evdev: Power Button: Device: "/dev/input/event6"
[    17.875] (--) evdev: Power Button: Vendor 0 Product 0x1
[    17.875] (--) evdev: Power Button: Found keys
[    17.875] (II) evdev: Power Button: Configuring as keyboard
[    17.875] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
[    17.875] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    17.875] (**) Option "xkb_rules" "evdev"
[    17.875] (**) Option "xkb_model" "pc105"
[    17.875] (**) Option "xkb_layout" "fr"
[    17.875] (**) Option "xkb_variant" "latin9"
[    17.961] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[    17.961] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    17.961] (II) Using input driver 'evdev' for 'Power Button'
[    17.961] (**) Power Button: always reports core events
[    17.961] (**) evdev: Power Button: Device: "/dev/input/event4"
[    17.961] (--) evdev: Power Button: Vendor 0 Product 0x1
[    17.961] (--) evdev: Power Button: Found keys
[    17.961] (II) evdev: Power Button: Configuring as keyboard
[    17.961] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
[    17.961] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    17.961] (**) Option "xkb_rules" "evdev"
[    17.961] (**) Option "xkb_model" "pc105"
[    17.961] (**) Option "xkb_layout" "fr"
[    17.961] (**) Option "xkb_variant" "latin9"
[    17.962] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
[    17.963] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    17.963] (II) Using input driver 'evdev' for 'Sleep Button'
[    17.963] (**) Sleep Button: always reports core events
[    17.963] (**) evdev: Sleep Button: Device: "/dev/input/event5"
[    17.963] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    17.963] (--) evdev: Sleep Button: Found keys
[    17.963] (II) evdev: Sleep Button: Configuring as keyboard
[    17.963] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5/event5"
[    17.963] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[    17.963] (**) Option "xkb_rules" "evdev"
[    17.963] (**) Option "xkb_model" "pc105"
[    17.963] (**) Option "xkb_layout" "fr"
[    17.963] (**) Option "xkb_variant" "latin9"
[    17.964] (II) config/udev: Adding drm device (/dev/dri/card0)
[    17.965] (II) config/udev: Adding input device Mega World USB Game Controllers (/dev/input/event0)
[    17.965] (II) No input driver specified, ignoring this device.
[    17.965] (II) This device may have been added with another device file.
[    17.966] (II) config/udev: Adding input device Mega World USB Game Controllers (/dev/input/js0)
[    17.966] (II) No input driver specified, ignoring this device.
[    17.966] (II) This device may have been added with another device file.
[    17.967] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event1)
[    17.967] (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[    17.967] (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
[    17.967] (**) Logitech USB Optical Mouse: always reports core events
[    17.967] (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event1"
[    17.968] (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05b
[    17.968] (--) evdev: Logitech USB Optical Mouse: Found 12 mouse buttons
[    17.968] (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
[    17.968] (--) evdev: Logitech USB Optical Mouse: Found relative axes
[    17.968] (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
[    17.968] (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
[    17.968] (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
[    17.968] (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
[    17.968] (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    17.968] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:10.0/usb4/4-1/4-1:1.0/input/input1/event1"
[    17.968] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 9)
[    17.968] (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
[    17.968] (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
[    17.968] (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
[    17.969] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[    17.969] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[    17.969] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
[    17.969] (II) No input driver specified, ignoring this device.
[    17.969] (II) This device may have been added with another device file.
[    17.970] (II) config/udev: Adding input device TypeMatrix.com USB Keyboard (/dev/input/event2)
[    17.970] (**) TypeMatrix.com USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    17.970] (**) TypeMatrix.com USB Keyboard: Applying InputClass "Typematrix Bepo"
[    17.970] (II) Using input driver 'evdev' for 'TypeMatrix.com USB Keyboard'
[    17.970] (**) TypeMatrix.com USB Keyboard: always reports core events
[    17.970] (**) evdev: TypeMatrix.com USB Keyboard: Device: "/dev/input/event2"
[    17.971] (--) evdev: TypeMatrix.com USB Keyboard: Vendor 0x1e54 Product 0x2030
[    17.971] (--) evdev: TypeMatrix.com USB Keyboard: Found keys
[    17.971] (II) evdev: TypeMatrix.com USB Keyboard: Configuring as keyboard
[    17.971] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:10.1/usb5/5-1/5-1:1.0/input/input2/event2"
[    17.971] (II) XINPUT: Adding extended input device "TypeMatrix.com USB Keyboard" (type: KEYBOARD, id 10)
[    17.971] (**) Option "xkb_rules" "evdev"
[    17.971] (**) Option "xkb_model" "pc105"
[    17.971] (**) Option "xkb_layout" "fr"
[    17.971] (**) Option "xkb_variant" "bepo"
[    17.971] (**) Option "xkb_options" "compose:lwin,grp:ctrls_toggle,lv3:ralt_switch"
[    18.071] (II) config/udev: Adding input device TypeMatrix.com USB Keyboard (/dev/input/event3)
[    18.071] (**) TypeMatrix.com USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    18.071] (**) TypeMatrix.com USB Keyboard: Applying InputClass "Typematrix Bepo"
[    18.071] (II) Using input driver 'evdev' for 'TypeMatrix.com USB Keyboard'
[    18.071] (**) TypeMatrix.com USB Keyboard: always reports core events
[    18.072] (**) evdev: TypeMatrix.com USB Keyboard: Device: "/dev/input/event3"
[    18.072] (--) evdev: TypeMatrix.com USB Keyboard: Vendor 0x1e54 Product 0x2030
[    18.072] (--) evdev: TypeMatrix.com USB Keyboard: Found 1 mouse buttons
[    18.072] (--) evdev: TypeMatrix.com USB Keyboard: Found scroll wheel(s)
[    18.072] (--) evdev: TypeMatrix.com USB Keyboard: Found relative axes
[    18.072] (II) evdev: TypeMatrix.com USB Keyboard: Forcing relative x/y axes to exist.
[    18.072] (--) evdev: TypeMatrix.com USB Keyboard: Found absolute axes
[    18.072] (II) evdev: TypeMatrix.com USB Keyboard: Forcing absolute x/y axes to exist.
[    18.072] (--) evdev: TypeMatrix.com USB Keyboard: Found keys
[    18.072] (II) evdev: TypeMatrix.com USB Keyboard: Configuring as mouse
[    18.072] (II) evdev: TypeMatrix.com USB Keyboard: Configuring as keyboard
[    18.072] (II) evdev: TypeMatrix.com USB Keyboard: Adding scrollwheel support
[    18.072] (**) evdev: TypeMatrix.com USB Keyboard: YAxisMapping: buttons 4 and 5
[    18.072] (**) evdev: TypeMatrix.com USB Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    18.072] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:10.1/usb5/5-1/5-1:1.1/input/input3/event3"
[    18.072] (II) XINPUT: Adding extended input device "TypeMatrix.com USB Keyboard" (type: KEYBOARD, id 11)
[    18.072] (**) Option "xkb_rules" "evdev"
[    18.072] (**) Option "xkb_model" "pc105"
[    18.072] (**) Option "xkb_layout" "fr"
[    18.072] (**) Option "xkb_variant" "bepo"
[    18.072] (**) Option "xkb_options" "compose:lwin,grp:ctrls_toggle,lv3:ralt_switch"
[    18.073] (II) evdev: TypeMatrix.com USB Keyboard: initialized for relative axes.
[    18.073] (WW) evdev: TypeMatrix.com USB Keyboard: ignoring absolute axes.
[    18.073] (**) TypeMatrix.com USB Keyboard: (accel) keeping acceleration scheme 1
[    18.073] (**) TypeMatrix.com USB Keyboard: (accel) acceleration profile 0
[    18.073] (**) TypeMatrix.com USB Keyboard: (accel) acceleration factor: 2.000
[    18.073] (**) TypeMatrix.com USB Keyboard: (accel) acceleration threshold: 4
[    18.074] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[    18.074] (II) No input driver specified, ignoring this device.
[    18.074] (II) This device may have been added with another device file.
[    26.566] (II) AIGLX: Suspending AIGLX clients for VT switch
[    26.566] (II) NOUVEAU(0): NVLeaveVT is called.

Re: [Xorg] Récupérer MatchVendor et MatchProduct

Publié : mar. 24 sept. 2013, 15:36
par benjarobin
Les lignes intéressantes sont :

Code : Tout sélectionner

[    17.966] (II) config/udev: Adding input device Mega World USB Game Controllers (/dev/input/js0)
[    17.966] (II) No input driver specified, ignoring this device.

[    18.825] (II) config/udev: Adding input device Logitech Logitech Dual Action (/dev/input/js0)
[    18.825] (II) No input driver specified, ignoring this device.
Tu peux déjà essayer ceci

Code : Tout sélectionner

Section "InputClass"
    Identifier "joystick catchall"
    MatchIsJoystick "on"
    MatchDevicePath "/dev/input/js*"
    Driver "evdev"
EndSection