|
View:
New views
20 Messages
—
Rating Filter:
Alert me
|
| < Prev | 1 - 2 | Next > |
|
|
0.8.1-1 on HP tx2500zHere are my results using linuxwacom-0.8.1-1 on my new HP tx2500z running Ubuntu 8.04 x86_64
mike@mike-tablet:~/Desktop/linuxwacom-0.8.1-1$ lsusb Bus 005 Device 003: ID 056a:0093 Wacom Co., Ltd I ran ./configure with --enable-wacom --enable-hid --enable-usbmouse --enable-input. Here are the results: BUILD ENVIRONMENT: architecture - x86_64-linux-gnu linux kernel - yes 2.6.24 module versioning - no kernel source - yes /lib/modules/2.6.24-20-generic/build XFree86 source - no Xorg SDK - no XSERVER64 - yes dlloader - yes XLib - yes /usr/lib TCL - no TK - no ncurses - no BUILD OPTIONS: wacom.o - yes wacdump - no xidump - yes (no ncurses) libwacomcfg - yes libwacomxi - no xsetwacom - yes hid.o - no usbmouse.o - no evdev.o - no mousedev.o - no input.o - no wacom_drv.so - no /usr/lib/xorg/modules/input wacom_drv.o - no wacom*_drv quirks - I don't understand why wacdump isn't included here. I then made and installed the driver, and immediately after running "modprobe wacom" I had touchscreen and active digitizer support (without editing xorg.conf). However, the calibration is way off and wacomcpl doesn't seem to be installed. Even though wacdump was listed as no earlier, it is installed, and it seems to be working (class usb device /dev/input/event12). What I noticed is that as I push harder on the screen, the pressure increases to ~250, then decreases to 128, so once I hit ~250 the registered pressure actually decreases as I press harder on the screen with my stylus. I'm not sure what else to report. This is my first tablet PC, so I'm not sure what else I can do. If you need any more information, don't hesitate to ask :) ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500zOn Wed, Jul 30, 2008 at 4:19 AM, Michael Grunde <m.grunde@...> wrote:
> Here are my results using linuxwacom-0.8.1-1 on my new HP tx2500z running > Ubuntu 8.04 x86_64 > Ooh. I've never tested this on 64 bit before. I'll investigate after work today to see if that's an issue. > mike@mike-tablet:~/Desktop/linuxwacom-0.8.1-1$ lsusb > Bus 005 Device 003: ID 056a:0093 Wacom Co., Ltd > Alrighty, that's the device I've got. > I ran ./configure with --enable-wacom --enable-hid --enable-usbmouse > --enable-input. Here are the results: > > BUILD ENVIRONMENT: > architecture - x86_64-linux-gnu > linux kernel - yes 2.6.24 > module versioning - no > kernel source - yes /lib/modules/2.6.24-20-generic/build > XFree86 source - no > Xorg SDK - no > XSERVER64 - yes > dlloader - yes > XLib - yes /usr/lib > TCL - no > TK - no > ncurses - no You need TCL (and TK) to build wacomcpl. You need ncurses for wacdump. IIRC, sudo apt-get install tcl8.4 tk8.4 libncurses5-dev will do the job. > > BUILD OPTIONS: > wacom.o - yes > wacdump - no > xidump - yes (no ncurses) > libwacomcfg - yes > libwacomxi - no > xsetwacom - yes > hid.o - no > usbmouse.o - no > evdev.o - no > mousedev.o - no > input.o - no > wacom_drv.so - no /usr/lib/xorg/modules/input > wacom_drv.o - no > wacom*_drv quirks - > > > I don't understand why wacdump isn't included here. See above. > > I then made and installed the driver, and immediately after running > "modprobe wacom" I had touchscreen and active digitizer support (without > editing xorg.conf). However, the calibration is way off and wacomcpl > doesn't seem to be installed. Calibration doesn't exist unless you edit xorg.conf. It pretends it's a regular (i.e. relative) mouse device, and being a touchscreen device this only leads to badness. Once you edit xorg.conf, it will be nice and linear. Here's my config segments: Section "InputDevice" Identifier "TabletPCStylus" Driver "wacom" Option "ForceDevice" "ISDV4" Option "Type" "stylus" Option "SendCoreEvents" "true" Option "Device" "/dev/input/by-path/pci-0000:00:0b.1-usb-0:2.3:1.0-wacom" Option "TopX" "225" Option "TopY" "122" Option "BottomX" "26365" Option "BottomY" "16488" EndSection Section "InputDevice" Identifier "TabletPCStylus2" Driver "wacom" Option "ForceDevice" "ISDV4" Option "Type" "stylus" Option "SendCoreEvents" "true" Option "Device" "/dev/input/by-path/pci-0000:00:0b.1-usb-0:2.3:1.1-wacom" EndSection Section "InputDevice" Identifier "TabletPCStylus3" Driver "wacom" Option "ForceDevice" "ISDV4" Option "Type" "eraser" Option "SendCoreEvents" "true" Option "Device" "/dev/input/by-path/pci-0000:00:0b.1-usb-0:2.3:1.0-wacom" EndSection Note: Do NOT change any of the identifiers. Changing them to anything else unless you know EXACTLY why they're the way they are will break wacomcpl (i.e. don't change them). The "Device" sections are based on my tx2000z, so they may have changed for the tx2500 (look in the /dev/input/by-path folder). 1.0-wacom is the pen/eraser, 1.1-wacom is the touch (No, the "Type" "Stylus" is not a typo. Just trust me.) > > Even though wacdump was listed as no earlier, it is installed, and it seems > to be working (class usb device /dev/input/event12). What I noticed is that > as I push harder on the screen, the pressure increases to ~250, then > decreases to 128, so once I hit ~250 the registered pressure actually > decreases as I press harder on the screen with my stylus. > This might have something to do with being on 64 bit. (The number is 255 by the way) After work today I'll investigate (as mentioned above). > I'm not sure what else to report. This is my first tablet PC, so I'm not > sure what else I can do. If you need any more information, don't hesitate > to ask :) I'll send you a debug patch after work today, and then you can send me your dmesg and I can go from there. Thanks for the report -Andrew ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500zOn Wed, Jul 30, 2008 at 6:05 AM, Andrew Zappacky <zappacky@...> wrote:
Okay, I installed those and recompiled the driver with only --enable-wacom (should I use more?), and wacdump was listed as yes. Should I have the XFree86 source and the Xorg SDK?
Okay, here's why I'm a bit confused: mike@mike-tablet:/dev/input/by-path$ ls pci-0000:00:13.0-usb-0:1:1.0-event-mouse pci-0000:00:14.5-usb-0:2:1.1-event- pci-0000:00:13.0-usb-0:1:1.0-mouse platform-i8042-serio-0-event-kbd pci-0000:00:13.0-usb-0:1:1.1-event- platform-i8042-serio-1-event-mouse pci-0000:00:14.5-usb-0:2:1.0-event-mouse platform-i8042-serio-1-mouse pci-0000:00:14.5-usb-0:2:1.0-mouse platform-pcspkr-event-spkr pci-0000:00:14.5-usb-0:2:1.1- I used 2:1.1- for the stylus/eraser and 2:1.1-event for the touchscreen, and the stylus is working like it was before (poorly calibrated), and the touchscreen does not work. I used those because cat /proc/bus/input/devices returned: I: Bus=0003 Vendor=056a Product=0093 Version=0373 N: Name="Wacom ISDv4 93" P: Phys= S: Sysfs=/devices/pci0000:00/0000:00:14.5/usb5/5-2/5-2:1.0/input/input14 U: Uniq= H: Handlers=mouse3 event12 B: EV=b B: KEY=1c03 0 0 0 0 0 B: ABS=1000100001b I: Bus=0003 Vendor=056a Product=0093 Version=0373 N: Name="Wacom ISDv4 93" P: Phys= S: Sysfs=/devices/pci0000:00/0000:00:14.5/usb5/5-2/5-2:1.1/input/input15 U: Uniq= H: Handlers=mouse4 event13 B: EV=b B: KEY=1c03 0 0 0 0 0 B: ABS=1000100001b
Thanks for all of your help. If you need any more information, just let me know. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500z>
> Okay, I installed those and recompiled the driver with only --enable-wacom > (should I use more?), and wacdump was listed as yes. Should I have the > XFree86 source and the Xorg SDK? > Nope on both counts. > > Okay, here's why I'm a bit confused: > > mike@mike-tablet:/dev/input/by-path$ ls > pci-0000:00:13.0-usb-0:1:1.0-event-mouse > pci-0000:00:14.5-usb-0:2:1.1-event- > pci-0000:00:13.0-usb-0:1:1.0-mouse platform-i8042-serio-0-event-kbd > pci-0000:00:13.0-usb-0:1:1.1-event- platform-i8042-serio-1-event-mouse > pci-0000:00:14.5-usb-0:2:1.0-event-mouse platform-i8042-serio-1-mouse > pci-0000:00:14.5-usb-0:2:1.0-mouse platform-pcspkr-event-spkr > pci-0000:00:14.5-usb-0:2:1.1- > > I used 2:1.1- for the stylus/eraser and 2:1.1-event for the touchscreen, and > the stylus is working like it was before (poorly calibrated), and the > touchscreen does not work. I used those because cat /proc/bus/input/devices > returned: Define "poorly calibrated". If the offset isn't linear (I.e. it looks like it accelerates), then it's not a calibration issue, it's a configuration issue. I'm investigating the touch screen. Stuff has changed on the X side of linuxwacom, and I've got to figure out what broke. That problem doesn't appear to be kernel side, at any rate. Still investigating pressure. -Andrew P.S. For my (and other readers' sake), could you please refrain from quoting the entire conversation? Just quote the parts that are relevant, people can look at the mailing list archives to see the previous messages. Thanks! ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500zDefine "poorly calibrated". If the offset isn't linear (I.e. it looks Then I think it sounds like a configuration issue to me. When using the stylus the cursor does seem to accelerate, and will even cross the path of the stylus from time to time (initially it "jumps" away from the stylus).
What confuses me is that the touchscreen did work as soon as I ran "modprobe wacom" before I edited my xorg.conf. It will still work if I comment out the wacom devices from my xorg.conf. Perhaps pci-0000:00:14.5-usb-0:2:1.1-event- isn't the touchscreen after all? When using the touchscreen, it does appear to be poorly calibrated (the displacement is linear). From Ping's last message, it would appear that 0.8.1-2 should fix my problems. Well, at least he expects it to fix the pressure and wacomcpl. I'm not sure exactly what the problem is with the active digitizer if it's not a calibration problem. Thank you for all of the help. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500zOn Wed, Jul 30, 2008 at 7:02 PM, Michael Grunde <m.grunde@...> wrote:
> > Then I think it sounds like a configuration issue to me. When using the > stylus the cursor does seem to accelerate, and will even cross the path of > the stylus from time to time (initially it "jumps" away from the stylus). > Acceleration tends to occur whenever another driver is trying to read wacom's inputs and interpreting them as relative. Make sure you aren't using any drivers with /dev/input/mice, because IIRC that will include linuxwacom inputs. Also, after modprobing wacom, you /do/ need to restart X (just making sure you know). If you rmmod it and then re-insmod it, the same applies. > > What confuses me is that the touchscreen did work as soon as I ran "modprobe > wacom" before I edited my xorg.conf. It will still work if I comment out > the wacom devices from my xorg.conf. Perhaps > pci-0000:00:14.5-usb-0:2:1.1-event- isn't the touchscreen after all? When > using the touchscreen, it does appear to be poorly calibrated (the > displacement is linear). > See my previous comment about /dev/input/mice (/dev/psaux is another culprit, an even worse one. If you have that, it WILL cause problems :P) > > From Ping's last message, it would appear that 0.8.1-2 should fix my > problems. Well, at least he expects it to fix the pressure and wacomcpl. > I'm not sure exactly what the problem is with the active digitizer if it's > not a calibration problem. > If you change those identifiers to the ones I use, wacomcpl should be able to calibrate them fine. Let me know how it turns out for you. -Andrew ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500z> Ping,
I would like to request kernel 2.6.26 support for wacom driver. I am now using ubuntu intrepid on TX2000, and cannot leave it as it keeps my laptop much cooler (around 50C) than hardy (around 70C). I don't know how much load it would be so please consider it when your time afford... Thanks. Yanagida ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500zSure, I'll see if I can add 2.6.26 support to 0.8.1-2 or not. If not (end of this week), it will definitely go to 0.8.1-3.
Thanks for the heads up suggestion. You'll soon be able to use your HP TX2000 with Wacom features, I promise.
Ping
On Wed, Jul 30, 2008 at 7:54 PM, yanagida hisashi <yanagida@...> wrote:
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500zOn Mittwoch, 30. Juli 2008, Michael Grunde wrote:
> On Wed, Jul 30, 2008 at 6:05 AM, Andrew Zappacky <zappacky@...> wrote: [...] > Okay, here's why I'm a bit confused: > > mike@mike-tablet:/dev/input/by-path$ ls > pci-0000:00:13.0-usb-0:1:1.0-event-mouse > pci-0000:00:14.5-usb-0:2:1.1-event- > pci-0000:00:13.0-usb-0:1:1.0-mouse platform-i8042-serio-0-event-kbd > pci-0000:00:13.0-usb-0:1:1.1-event- > platform-i8042-serio-1-event-mouse pci-0000:00:14.5-usb-0:2:1.0-event-mouse > platform-i8042-serio-1-mouse pci-0000:00:14.5-usb-0:2:1.0-mouse > platform-pcspkr-event-spkr pci-0000:00:14.5-usb-0:2:1.1- Could you may send me also the output of 'ls -lha /dev/input/*' > I used 2:1.1- for the stylus/eraser and 2:1.1-event for the touchscreen, > and the stylus is working like it was before (poorly calibrated), and the > touchscreen does not work. Do you have now a working xorg.conf? Could you send the relevant parts of your xorg.conf? Danny ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
|
|
|
Re: 0.8.1-1 on HP tx2500zOn Sonntag, 3. August 2008, Michael Grunde wrote:
> > You missed the '*' at the end of the command. I would need also the by-id > > and by-path information. > > Sorry, here it is [...] > /dev/input/by-id: > total 0 > drwxr-xr-x 2 root root 120 2008-08-02 02:08 . > drwxr-xr-x 4 root root 500 2008-08-02 02:08 .. > lrwxrwxrwx 1 root root 10 2008-08-02 02:08 > usb-Logitech_USB_Receiver-event-mouse -> ../event10 > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 > usb-Logitech_USB_Receiver-mouse -> ../mouse2 > lrwxrwxrwx 1 root root 10 2008-08-02 02:08 > usb-Tablet_ISD-V4-event-mouse -> ../event12 > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 usb-Tablet_ISD-V4-mouse -> > ../mouse3 > > /dev/input/by-path: > lrwxrwxrwx 1 root root 10 2008-08-02 02:08 > pci-0000:00:14.5-usb-0:2:1.0-event-mouse -> ../event12 > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 > pci-0000:00:14.5-usb-0:2:1.0-mouse -> ../mouse3 > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 > pci-0000:00:14.5-usb-0:2:1.1- -> ../mouse4 > lrwxrwxrwx 1 root root 10 2008-08-02 02:08 > pci-0000:00:14.5-usb-0:2:1.1-event- -> ../event13 > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 Hm. The Touch device is pci-0000:00:14.5-usb-0:2:1.1-event- ? Can someone confirm that this is the correct device also on other tx2500z? The path is persistent and should be always the same at this machine, but is it the same on all machines of this type? It would be nice if there would be a useful link also in by-id. It would make the life really much easier. Is there any way that the driver could provide such a link? @Ping: any chance to get this? Danny ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500zI have the the tx2000z , but I think devices are persistent on the same
laptops. I have a tutorial up at ubuntu forums and as far as I know, people with the same laptop as I have just pasted in my xorg.conf and it worked. But these are customizable laptops, meaning some laptops may have extra pci devices which would probably throw off the device numbers. I can confirm however that the same ending device name is the same even here on the tx2000 series (the "event-" part for touch and "event-mouse" for stylus and eraser.) It would be nice for the events to automatically go to /dev/input/wacom or the like which it did with the graphire and other tablets. it would make for an easier and cleaner configuration. Kory On Sat, 2008-08-09 at 15:09 +0200, Danny Kukawka wrote: > On Sonntag, 3. August 2008, Michael Grunde wrote: > > > You missed the '*' at the end of the command. I would need also the by-id > > > and by-path information. > > > > Sorry, here it is > [...] > > /dev/input/by-id: > > total 0 > > drwxr-xr-x 2 root root 120 2008-08-02 02:08 . > > drwxr-xr-x 4 root root 500 2008-08-02 02:08 .. > > lrwxrwxrwx 1 root root 10 2008-08-02 02:08 > > usb-Logitech_USB_Receiver-event-mouse -> ../event10 > > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 > > usb-Logitech_USB_Receiver-mouse -> ../mouse2 > > lrwxrwxrwx 1 root root 10 2008-08-02 02:08 > > usb-Tablet_ISD-V4-event-mouse -> ../event12 > > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 usb-Tablet_ISD-V4-mouse -> > > ../mouse3 > > > > /dev/input/by-path: > [...] > > lrwxrwxrwx 1 root root 10 2008-08-02 02:08 > > pci-0000:00:14.5-usb-0:2:1.0-event-mouse -> ../event12 > > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 > > pci-0000:00:14.5-usb-0:2:1.0-mouse -> ../mouse3 > > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 > > pci-0000:00:14.5-usb-0:2:1.1- -> ../mouse4 > > lrwxrwxrwx 1 root root 10 2008-08-02 02:08 > > pci-0000:00:14.5-usb-0:2:1.1-event- -> ../event13 > > lrwxrwxrwx 1 root root 9 2008-08-02 02:08 > > Hm. The Touch device is pci-0000:00:14.5-usb-0:2:1.1-event- ? Can someone > confirm that this is the correct device also on other tx2500z? The path is > persistent and should be always the same at this machine, but is it the same > on all machines of this type? > > It would be nice if there would be a useful link also in by-id. It would make > the life really much easier. Is there any way that the driver could provide > such a link? @Ping: any chance to get this? > > Danny > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Linuxwacom-devel mailing list > Linuxwacom-devel@... > https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500zAn atempt to udev.rules has been made around May this year (refer to [Linuxwacom-devel] Slightly modified wacom.rule for detail). But no real solution has been found due to the fact that the same physical device supports two types of input: stylus and touch. Changes/updates in udev are needed before we can do anything. Danny, do you have conact at udev group?PingOn Sat, Aug 9, 2008 at 6:09 AM, Danny Kukawka <danny.kukawka@...> wrote:
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@... https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel |
|
|
Re: 0.8.1-1 on HP tx2500z |