init script cleanup, use /etc/rc.d/ for enabled scripts, /etc/init.d/<pkgname> (enabl...
[openwrt.git] / package / base-files / brcm-2.4 / etc / init.d / netconfig
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 START=05
5
6 start() {
7         [ -e /etc/config/network ] && exit 0
8
9         mkdir -p /etc/config
10
11         (
12                 if grep -E 'mtd0: 000(6|a)0000' /proc/mtd 2>&- >&-; then
13                         # WGT634u
14                         echo boardtype=wgt634u
15                 else
16                         strings /dev/mtdblock/3
17                 fi
18         ) | awk '
19         function p(cfgname, name) {
20                 if (c[name] != "") print "      option " cfgname "      \"" c[name] "\""
21         }
22         
23         BEGIN {
24                 FS="="
25                 c["lan_ifname"]="eth0.0"
26                 c["wan_ifname"]="eth0.1"
27                 c["vlan0ports"]="1 2 3 4 5*"
28                 c["vlan1ports"]="0 5"
29         }
30         
31         ($1 == "boardnum") || ($1 == "boardtype") || ($1 == "boardflags") {
32                 nvram[$1] = $2
33         }
34         
35         END {
36                 # v1 hardware
37                 if (nvram["boardtype"] == "bcm94710dev") {
38                         # Asus WL-500g
39                         if (nvram["boardnum"] == "asusX") {
40                                 c["lan_ifname"]="eth0 eth1" # FIXME
41                                 c["wan_ifname"]=""
42                         }
43                 }
44                 if (nvram["boardtype"] == "wgt634u") {
45                         c["vlan0ports"] = "0 1 2 3 5*"
46                         c["vlan1ports"] = "4 5"
47                 }
48                 if ((nvram["boardtype"] == "0x0467") || (nvram["boardtype"] == "0x042f")) {
49                         c["vlan0ports"] = "0 1 2 3 5*"
50                         c["vlan1ports"] = "4 5"
51                 }
52         
53                 # WAP54G
54                 if ((nvram["boardnum"] == "2") || \
55                         (nvram["boardnum"] == "1024")) {
56                         c["lan_ifname"]="eth0"
57                         c["wan_ifname"]=""
58                 }
59         
60                 print "#### VLAN configuration "
61                 print "config switch eth0"
62                 p("vlan0", "vlan0ports")
63                 p("vlan1", "vlan1ports")
64                 print ""
65                 print ""
66                 print "#### Loopback configuration"
67                 print "config interface loopback"
68                 print " option ifname   \"lo\""
69                 print " option proto    static"
70                 print " option ipaddr   127.0.0.1"
71                 print " option netmask  255.0.0.0"
72                 print ""
73                 print ""
74                 print "#### LAN configuration"
75                 print "config interface lan"
76                 print " option type     bridge"
77                 p("ifname", "lan_ifname")
78                 print " option proto    static"
79                 print " option ipaddr   192.168.1.1"
80                 print " option netmask  255.255.255.0"
81                 print ""
82                 print ""
83                 print "#### WAN configuration"
84                 print "config interface wan"
85                 p("ifname", "wan_ifname")
86                 print " option proto    dhcp"
87         }' > /etc/config/network
88 }