mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-18 10:31:16 +01:00
9 lines
154 B
Bash
Executable file
9 lines
154 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
START=39
|
|
start() {
|
|
[ -d /proc/bus/usb ] && {
|
|
/bin/mount -t usbfs none /proc/bus/usb
|
|
}
|
|
}
|