On 3/25/06, Dave M G <[EMAIL PROTECTED]> wrote:

> Just to be sure, I run the ./configure command with the kernel option,
> like so:
> ./configure --with-kernel=/usr/src/linux-source-2.6.15 --enable-wacom
>
> Yet, the output of ./configure indicates that not only can it not find
> the kernel source, but that it assumes that I am running kernel 2.4 (see
> below). This is also true if I leave off the --with-kernel option.
>
> Why is the ./configure command not finding my kernel source?
>
> Further, the web site says:
> "For kernel 2.6, you need to configure the kernel modules (wacom and
> hid) under your kernel source directory before configuring linuxwacom."

2.6.15 already has the up-to-date wacom and hid drivers (well, 0.7.2
anyway), so you can skip building kernel modules. The things you need
to do now are:

1) Install the X wacom driver in /usr/lib/modules/input/wacom_drv.o

2) Configure X properly. This means your configuration (probably
/etc/X11/xorg.conf) should have this:

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/input/wacom"   # USB ONLY
  Option        "Type"          "stylus"
  Option        "USB"           "on"                  # USB ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/input/wacom"   # USB ONLY
  Option        "Type"          "eraser"
  Option        "USB"           "on"                  # USB ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/input/wacom"   # USB ONLY
  Option        "Type"          "cursor"
  Option        "USB"           "on"                  # USB ONLY
EndSection

3) Create /etc/udev/rules.d/10-wacom.rules with this line:

KERNEL="event*", SYSFS{idVendor}="056a", NAME="input/%k",
SYMLINK="input/wacom%e"

4) Reboot (easier than trying to restart X and udevd).

Note that this is for my Gentoo setup. I have an Ubuntu laptop (with
Dapper even), but I don't presently have the wacom stuff setup on
there yet.

It's entirely possible that the Dapper packages are up-to-date. Have
you tried (I think) wacom-tools? Seach synaptic for "wacom". Then you
might not have to do any of the above.
--
The Pythonic Principle: Python works the way it does
because if it didn't, it wouldn't be Python.


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
Linuxwacom-discuss mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linuxwacom-discuss

Reply via email to