openwrtv3/package/base-files/files/etc/init.d/usb
Felix Fietkau d56750665c use rc.common for usb init script
SVN-Revision: 6873
2007-04-06 16:07:36 +00:00

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
}
}