diff options
-rwxr-xr-x | files/etc/rc.d/S40network | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/files/etc/rc.d/S40network b/files/etc/rc.d/S40network deleted file mode 100755 index b6c7f71..0000000 --- a/files/etc/rc.d/S40network +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2006 OpenWrt.org - -START=40 -STOP=90 - -boot() { - setup_switch() { return 0; } - - include /lib/network - setup_switch - grep -qs config /etc/config/wireless && { - /sbin/wifi up - } || { - rm -f /etc/config/wireless - /sbin/wifi detect > /etc/config/wireless - } - - scan_interfaces - - local ifc - for ifc in $interfaces; do - local proto - config_get proto "$ifc" proto - - local auto - config_get_bool auto "$ifc" auto 1 - - type "coldplug_interface_$proto" >/dev/null && [ "$auto" = 1 ] && \ - coldplug_interface_$proto "$ifc" - done - ifconfig ath0 | grep HWaddr | awk '{print $5}' | tr -d "\n" | md5sum | awk 'sub("...$", "")' > /proc/sys/kernel/hostname - -} - -start() { - setup_switch() { return 0; } - - include /lib/network - setup_switch - ifup -a - /sbin/wifi up -} - -stop() { - ifdown -a -} - -restart() { - start -} |