https://github.com/hadess/udraw
THQ uDraw Game Tablet for PS3 Linux driver
https://github.com/hadess/udraw
driver linux playstation3 ps3 udraw udrawtablet
Last synced: about 2 months ago
JSON representation
THQ uDraw Game Tablet for PS3 Linux driver
- Host: GitHub
- URL: https://github.com/hadess/udraw
- Owner: hadess
- Created: 2016-09-08T17:47:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-21T00:42:01.000Z (about 7 years ago)
- Last Synced: 2025-03-25T08:42:34.770Z (2 months ago)
- Topics: driver, linux, playstation3, ps3, udraw, udrawtablet
- Language: C
- Size: 30.3 KB
- Stars: 8
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# THQ uDraw Game Tablet for PS3 Linux driver
This repository was used for driver development when the driver was
still out-of-tree. The repository is however still updated with the
latest upstream patches, to make it easier to experiment and review
changes.New features, and bug reports should be made using the usual kernel
development process, through the linux-input@ mailing-list.The code is under the same license as the Linux kernel itself. See
COPYING file for details.## Installation
After compiling with `make` and `make install` (the latter as root or through `sudo`),
you'll need to create a few files to load the driver correctly.Create a `/etc/udev/load_hid_udraw.sh` file with the content:
```
#!/bin/bash
DRIVER=$1
DEVICE=$2
HID_DRV_PATH=/sys/bus/hid/drivers
/sbin/modprobe hid_udraw_ps3_standalone
echo ${DEVICE} > ${HID_DRV_PATH}/hid-generic/unbind
echo ${DEVICE} > ${HID_DRV_PATH}/hid-udraw-ps3/bind
```Create a `/etc/udev/rules.d/80-udraw.rules` file with the content:
```
DRIVER=="hid-generic", ENV{MODALIAS}=="hid:b0003g*v000020D6p0000CB17", RUN+="/bin/sh /etc/udev/load_hid_udraw.sh hid-generic %k"
```After a reboot, the driver should be loaded automatically when the dongle gets plugged in.