aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2007-06-20 22:05:15 +0000
committerJohn Crispin <blogic@openwrt.org>2007-06-20 22:05:15 +0000
commita9894020373afc96dcb25e47e5f28c99299177a1 (patch)
treeca35bd3c23f192c5bd60052eb412f2e627158455 /package/base-files/files/etc/hotplug.d
parent511942352f27578949ef3b508c009f464e1435a8 (diff)
downloadmaster-187ad058-a9894020373afc96dcb25e47e5f28c99299177a1.tar.gz
master-187ad058-a9894020373afc96dcb25e47e5f28c99299177a1.tar.bz2
master-187ad058-a9894020373afc96dcb25e47e5f28c99299177a1.zip
added usb-storage hotpluging
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7684 3c298f89-4303-0410-b956-a3cf2f4a3e73
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
+