Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setupwacom.sh
blob: ba1ac48fd4079f303f51b4c1380bcc64ece70fe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

echo Installing linuxwacom package...
yum -y install linuxwacom

echo Copying and installing Wacom kernel module...
mkdir /lib/modules/`uname -r`/kernel/drivers/usb/input
wget http://dev.laptop.org/~pgf/wacom.ko -O /lib/modules/`uname -r`/kernel/drivers/usb/input/wacom.ko

echo Copying Xorg configuration file...
wget http://dev.laptop.org/~wadeb/xorg-dcon.conf -O /etc/X11/xorg-dcon.conf

echo Building kernel module dependenies...
depmod
modprobe wacom

echo Wacom installation complete!  Please restart your XO.