• [^] # Re: Mains dans le cambuis

    Posté par . En réponse au message Tablette wacom Volito. Évalué à 2.

    Ca y est! Ca marche ! la gomme, la pression et en meme temps que ma souris ps2.

    la page qui 'a le plus aidé http://gentoo-wiki.com/HOWTO_Wacom_Tablet
    Merci à la comunauté Gentoo.

    je résume ma solution pour mandriva 2006:


    # cat /proc/bus/input/devices
    I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
    N: Name="AT Translated Set 2 keyboard"
    P: Phys=isa0060/serio0/input0
    H: Handlers=kbd event0
    B: EV=120013
    B: KEY=4 2000000 2b803878 f840d001 f2ffffdf ffefffff ffffffff fffffffe
    B: MSC=10
    B: LED=7

    I: Bus=0011 Vendor=0002 Product=0005 Version=0000
    N: Name="ImPS/2 Generic Wheel Mouse"
    P: Phys=isa0060/serio1/input0
    H: Handlers=mouse0 event1 ts0
    B: EV=7
    B: KEY=70000 0 0 0 0 0 0 0 0
    B: REL=103

    I: Bus=0003 Vendor=056a Product=0011 Version=0203
    N: Name="Wacom Graphire2 4x5"
    P: Phys=usb-.&checktime(0000,00,02,':').0-3.2/input0
    H: Handlers=event2 ts1
    B: EV=f
    B: KEY=1c43 0 70000 0 0 0 0 0 0 0 0
    B: REL=100
    B: ABS=3000003


    Or dans mon xorg.conf :

    Section "InputDevice"
    Identifier "Eraser1"
    Driver "wacom"
    Option "Device" "/dev/input/event0"
    Option "Type" "eraser"
    Option "Mode" "Absolute"
    Option "USB"
    EndSection

    Section "InputDevice"
    Identifier "Cursor1"
    Driver "wacom"
    Option "Device" "/dev/input/event0"
    Option "Type" "cursor"
    Option "Mode" "Relative"
    Option "USB"
    EndSection

    Section "InputDevice"
    Identifier "Stylus1"
    Driver "wacom"
    Option "Device" "/dev/input/event0"
    Option "Type" "stylus"
    Option "Mode" "Absolute"
    Option "USB"
    EndSection


    Donc on remplace event0 par event2 et hop tout roule :-)

    Mon xorg.conf qui marche:

    # File generated by XFdrake.

    # **********************************************************************
    # Refer to the XF86Config man page for details about the format of
    # this file.
    # **********************************************************************

    Section "Files"
    # Multiple FontPath entries are allowed (they are concatenated together)
    # By default, Mandrake 6.0 and later now use a font server independent of
    # the X server to render fonts.
    FontPath "unix/:-1"
    EndSection

    Section "ServerFlags"
    #DontZap # disable (server abort)
    #DontZoom # disable <KP_+>/<KP_-> (resolution switching)
    AllowMouseOpenFail # allows the server to start up even if the mouse does not work
    EndSection

    Section "Module"
    Load "dbe" # Double-Buffering Extension
    Load "v4l" # Video for Linux
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx" # 3D layer
    EndSection

    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "keyboard"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "fr"
    Option "XkbOptions" "compose:rwin"
    EndSection

    Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "Device" "/dev/mouse"
    Option "ZAxisMapping" "6 7"
    EndSection

    Section "InputDevice"
    Identifier "Eraser1"
    Driver "wacom"
    Option "Device" "/dev/input/event2"
    Option "Type" "eraser"
    Option "Mode" "Absolute"
    Option "USB"
    EndSection

    Section "InputDevice"
    Identifier "Cursor1"
    Driver "wacom"
    Option "Device" "/dev/input/event2"
    Option "Type" "cursor"
    Option "Mode" "Relative"
    Option "USB"
    EndSection

    Section "InputDevice"
    Identifier "Stylus1"
    Driver "wacom"
    Option "Device" "/dev/input/event2"
    Option "Type" "stylus"
    Option "Mode" "Absolute"
    Option "USB"
    EndSection

    Section "Monitor"
    Identifier "monitor1"
    VendorName "Plug'n Play"
    ModelName "HM903DADTA"
    HorizSync 30-133
    VertRefresh 50-200

    # Monitor preferred modeline (85.0 Hz vsync, 91.1 kHz hsync, ratio 5/4)
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync

    # TV fullscreen mode or DVD fullscreen output.
    # 768x576 @ 79 Hz, 50 kHz hsync
    ModeLine "768x576" 50.00 768 832 846 1000 576 590 595 630

    # 768x576 @ 100 Hz, 61.6 kHz hsync
    ModeLine "768x576" 63.07 768 800 960 1024 576 578 590 616
    EndSection

    Section "Device"
    Identifier "device1"
    VendorName "nVidia"
    BoardName "NVIDIA GeForce FX (generic)"
    Driver "nvidia"
    Option "DPMS"
    EndSection

    Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultColorDepth 24

    Subsection "Display"
    Depth 8
    Virtual 1400 1050
    EndSubsection

    Subsection "Display"
    Depth 15
    Virtual 1400 1050
    EndSubsection

    Subsection "Display"
    Depth 16
    Virtual 1400 1050
    EndSubsection

    Subsection "Display"
    Depth 24
    Virtual 1400 1050
    EndSubsection
    EndSection

    Section "ServerLayout"
    Identifier "layout1"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Eraser1" "AlwaysCore"
    InputDevice "Cursor1" "AlwaysCore"
    InputDevice "Stylus1" "AlwaysCore"
    Screen "screen1"
    EndSection