diff options
author | Karel Kočí <cynerd@email.cz> | 2018-09-13 00:17:08 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-09-13 00:17:08 +0200 |
commit | f92e15fbe52427e51260f60fe902da18ae85fd2a (patch) | |
tree | 3e1f3716c2db819b3b56e169471fb0ea8c69710c /bigclown-gateway/files/hotplug | |
parent | 5b0c2421d6ca596154d03b8994680e58e52846c9 (diff) | |
download | openwrt-personal-pkgs-f92e15fbe52427e51260f60fe902da18ae85fd2a.tar.gz openwrt-personal-pkgs-f92e15fbe52427e51260f60fe902da18ae85fd2a.tar.bz2 openwrt-personal-pkgs-f92e15fbe52427e51260f60fe902da18ae85fd2a.zip |
bigclown-gateway: ok no device link
It seems to not work so just drop it.
Diffstat (limited to 'bigclown-gateway/files/hotplug')
-rw-r--r-- | bigclown-gateway/files/hotplug | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/bigclown-gateway/files/hotplug b/bigclown-gateway/files/hotplug deleted file mode 100644 index fb1ef59..0000000 --- a/bigclown-gateway/files/hotplug +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -DEVNAME="$(ls "/sys/$DEVPATH" | grep "^ttyUSB[0-9]*$")" -[ -n "$DEVNAME" ] || exit 0 -[ "$ID_VENDOR" = "0403" ] || exit 0 -[ "$ID_MODEL" = "6015" ] || exit 0 -echo "$ID_SERIAL" | grep -q ".*bc-usb-dongle.*" || exit 0 - -action_add() { - local id=0 - while [ -e "/dev/bcUD$id" ]; do - id=$(expr $id + 1) - done - ln -sf "/dev/$DEVNAME" "/dev/bcUD$id" -} - -action_remove() { - local id=0 - while [ "$(readlink "/dev/bcUD$id")" = "$DEVNAME" ]; do - [ -e "/dev/bcUD$id" ] || return 0 - id=$(expr $id + 1) - done - rm "/dev/bcUD$id" -} - -case "$ACTION" in - add) - action_add - ;; - remove) - action_remove - ;; -esac |