summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-gfx/sane-backends/files/libusbscanner-device-r1.patch')
-rw-r--r--media-gfx/sane-backends/files/libusbscanner-device-r1.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/media-gfx/sane-backends/files/libusbscanner-device-r1.patch b/media-gfx/sane-backends/files/libusbscanner-device-r1.patch
new file mode 100644
index 000000000000..ee1891bb411b
--- /dev/null
+++ b/media-gfx/sane-backends/files/libusbscanner-device-r1.patch
@@ -0,0 +1,20 @@
+--- tools/hotplug/libusbscanner 2004-05-10 08:28:34.537782880 +0200
++++ libusbscanner.new 2004-05-10 08:32:05.998691893 +0200
+@@ -13,6 +13,17 @@
+ # DEVICE=/proc/bus/usb/BBB/DDD
+ # TYPE=usb
+
++
++if [ -z "${DEVICE}" ] ; then
++ IF=$(echo ${DEVPATH} | sed 's:\(bus/usb/devices/\)\(.*\)-\(.*\):\2:')
++ if [ -r /sys/${DEVPATH}/devnum ]; then
++ DEV=$(cat /sys/${DEVPATH}/devnum)
++ else
++ DEV=1 # you'll have to adjust this manually for kernel < 2.6.6
++ fi
++ DEVICE=$(printf '/proc/bus/usb/%.03d/%.03d' ${IF} ${DEV})
++fi
++
+ if [ "$ACTION" = "add" -a "$TYPE" = "usb" ]; then
+ chown root:scanner "$DEVICE"
+ chmod 0660 "$DEVICE"