aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2007-06-20 22:05:15 +0000
committerJohn Crispin <john@openwrt.org>2007-06-20 22:05:15 +0000
commit2fe37ccdf6ec2d7757e350a1d1a9679efbea3b41 (patch)
tree9133e2573c2c34dfd656846fe221595d9d8ca7eb /package/base-files/files/etc/hotplug.d
parentfa799b9b4c54ff7155425b4dfaf35da27800e2f6 (diff)
downloadupstream-2fe37ccdf6ec2d7757e350a1d1a9679efbea3b41.tar.gz
upstream-2fe37ccdf6ec2d7757e350a1d1a9679efbea3b41.tar.bz2
upstream-2fe37ccdf6ec2d7757e350a1d1a9679efbea3b41.zip
added usb-storage hotpluging
SVN-Revision: 7684
Diffstat (limited to 'package/base-files/files/etc/hotplug.d')
-rw-r--r--package/base-files/files/etc/hotplug.d/usb/10-usb-storage13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/base-files/files/etc/hotplug.d/usb/10-usb-storage b/package/base-files/files/etc/hotplug.d/usb/10-usb-storage
new file mode 100644
index 0000000000..14001f6ff1
--- /dev/null
+++ b/package/base-files/files/etc/hotplug.d/usb/10-usb-storage
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+# Copyright (C) 2006 OpenWrt.org
+
+case "$ACTION" in
+ add)
+ [ -n "${INTERFACE}" ] &&
+ [ "$(expr substr ${INTERFACE} 1 2)" == "8/" ] && {
+ /sbin/usb-storage &
+ }
+ ;;
+esac
+