mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:38:26 +02:00
eefc23ca59
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10635 3c298f89-4303-0410-b956-a3cf2f4a3e73
69 lines
1.4 KiB
Bash
69 lines
1.4 KiB
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
START=05
|
|
|
|
start() {
|
|
[ -e /etc/config/network ] && exit 0
|
|
|
|
mkdir -p /etc/config
|
|
|
|
board_name=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /system type/ {print $2}' /proc/cpuinfo)
|
|
|
|
case "$board_name" in
|
|
"Compex WP54"*)
|
|
board="Compex WP54";;
|
|
esac
|
|
|
|
echo "$board" |awk '
|
|
function p(cfgname, name) {
|
|
if (c[name] != "") print " option " cfgname " \"" c[name] "\""
|
|
}
|
|
|
|
BEGIN {
|
|
FS="="
|
|
c["lan_ifname"]="eth0"
|
|
c["wan_ifname"]="eth1"
|
|
c["eth0ports"]="1 2 3 4"
|
|
c["eth1ports"]="0"
|
|
}
|
|
END {
|
|
board=$1
|
|
if (board == "Compex WP54") {
|
|
c["eth0ports"]="0"
|
|
c["eth1ports"]="1"
|
|
}
|
|
|
|
print "#### VLAN configuration "
|
|
print "config switch"
|
|
p("eth0", "eth0ports")
|
|
p("eth1", "eth1ports")
|
|
print ""
|
|
print ""
|
|
print "#### Loopback configuration"
|
|
print "config interface loopback"
|
|
print " option ifname \"lo\""
|
|
print " option proto static"
|
|
print " option ipaddr 127.0.0.1"
|
|
print " option netmask 255.0.0.0"
|
|
print ""
|
|
print ""
|
|
print "#### LAN configuration"
|
|
print "config interface lan"
|
|
print " option type bridge"
|
|
p("ifname", "lan_ifname")
|
|
p("macaddr", "lan_macaddr")
|
|
print " option proto static"
|
|
print " option ipaddr 192.168.1.1"
|
|
print " option netmask 255.255.255.0"
|
|
print ""
|
|
print ""
|
|
print "#### WAN configuration"
|
|
print "config interface wan"
|
|
p("ifname", "wan_ifname")
|
|
p("macaddr", "wan_macaddr")
|
|
print " option proto dhcp"
|
|
}' > /etc/config/network
|
|
}
|
|
|