diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-06 14:00:40 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-06 14:00:40 +0200 |
commit | 6e9c41a892ed0e0da326e0278b3221ce3f5713b8 (patch) | |
tree | 2e301d871bbeeb44aa57ff9cc070fcf3be484487 /tools/openbsd/attach |
Initial import of sane-backends version 1.0.24-1.2
Diffstat (limited to 'tools/openbsd/attach')
-rwxr-xr-x | tools/openbsd/attach | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/openbsd/attach b/tools/openbsd/attach new file mode 100755 index 0000000..b6c98c8 --- /dev/null +++ b/tools/openbsd/attach @@ -0,0 +1,20 @@ +#!/bin/sh + +DEVCLASS=$1 +DEVNAME=$2 + +case $DEVCLASS in +0) + # generic devices + case "$DEVNAME" in + ugen*) + BUSNAME=`usbdevs -v -d | egrep "Controller|$DEVNAME\$" | grep -B 1 ugen0$ | head -n 1 | sed -e 's,Controller ,,' -e 's,:$,,' ` + echo $BUSNAME > /var/run/${DEVNAME}.bus + # probably our scanner + chgrp usb /dev/"$DEVNAME".* + chgrp usb /dev/"$BUSNAME" + ;; + esac + + ;; +esac |