diff options
author | John Crispin <john@openwrt.org> | 2013-07-11 17:00:17 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-07-11 17:00:17 +0000 |
commit | 523114e741988757a625ab36e26ce83b329c4f08 (patch) | |
tree | 5c243b46cb71baaf77f58bd5ff818b64c9d72a49 /package/base-files | |
parent | 8149689393ae2d1afa1d13971bf7981ba5bbafcd (diff) | |
download | upstream-523114e741988757a625ab36e26ce83b329c4f08.tar.gz upstream-523114e741988757a625ab36e26ce83b329c4f08.tar.bz2 upstream-523114e741988757a625ab36e26ce83b329c4f08.zip |
base-file: usbfs is no longer mounted under /proc/bus/usb
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 37240
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/files/etc/init.d/usb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/package/base-files/files/etc/init.d/usb b/package/base-files/files/etc/init.d/usb deleted file mode 100755 index 43cdfd9a95..0000000000 --- a/package/base-files/files/etc/init.d/usb +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2006 OpenWrt.org - -START=39 -start() { - [ -d /proc/bus/usb ] && { - mount -o noatime -t usbfs none /proc/bus/usb - } -} |