diff options
author | John Crispin <john@openwrt.org> | 2007-06-20 22:05:15 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2007-06-20 22:05:15 +0000 |
commit | 2fe37ccdf6ec2d7757e350a1d1a9679efbea3b41 (patch) | |
tree | 9133e2573c2c34dfd656846fe221595d9d8ca7eb /package/base-files/files/etc | |
parent | fa799b9b4c54ff7155425b4dfaf35da27800e2f6 (diff) | |
download | upstream-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')
-rw-r--r-- | package/base-files/files/etc/hotplug.d/usb/10-usb-storage | 13 |
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 + |