diff options
Diffstat (limited to 'rc.d/rcS.d/020-mountbasic.sh')
-rwxr-xr-x | rc.d/rcS.d/020-mountbasic.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/rc.d/rcS.d/020-mountbasic.sh b/rc.d/rcS.d/020-mountbasic.sh deleted file mode 100755 index 9448be61..00000000 --- a/rc.d/rcS.d/020-mountbasic.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -if [ ! -e /proc/mounts ]; then - mount -n -t proc /proc /proc - mount -n -t sysfs /sys /sys >/dev/null 2>&1 -fi -if [ ! -d /proc/bus/usb ]; then - modprobe usbcore >/dev/null 2>&1 && mount -n -t usbfs /proc/bus/usb /proc/bus/usb -else - mount -n -t usbfs /proc/bus/usb /proc/bus/usb -fi -: |