mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:32:49 +02:00
fix broken init file and some cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10613 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
ba6e77ed2d
commit
b5c0892412
@ -8,30 +8,34 @@ start() {
|
|||||||
|
|
||||||
mkdir -p /etc/config
|
mkdir -p /etc/config
|
||||||
|
|
||||||
adm5120_detect() {
|
|
||||||
board_name=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /system type/ {print $2}' /proc/cpuinfo)
|
board_name=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /system type/ {print $2}' /proc/cpuinfo)
|
||||||
|
|
||||||
case "$board_name" in
|
case "$board_name" in
|
||||||
"Compex WP54"*)
|
"Compex WP54"*)
|
||||||
board="WP54";;
|
board="Compex WP54";;
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
|
||||||
|
|
||||||
adm5120_detect
|
echo "$board" |awk '
|
||||||
|
board=$1
|
||||||
|
|
||||||
|
function p(cfgname, name) {
|
||||||
|
if (c[name] != "") print " option " cfgname " \"" c[name] "\""
|
||||||
|
}
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
FS="="
|
FS="="
|
||||||
c["lan_ifname"]="eth0"
|
c["lan_ifname"]="eth0"
|
||||||
c["wan_ifname"]="eth1"
|
c["wan_ifname"]="eth1"
|
||||||
c["eth0ports"]="12345"
|
c["eth0ports"]="1 2 3 4 5"
|
||||||
c["eth1ports"]="0"
|
c["eth1ports"]="0"
|
||||||
}
|
}
|
||||||
|
|
||||||
END {
|
END {
|
||||||
if (model == "Compex WP54") {
|
if (board == "Compex WP54") {
|
||||||
c["vlan0ports"]="0"
|
c["eth0ports"]="0"
|
||||||
c["vlan1ports"]="1"
|
c["eth1ports"]="1"
|
||||||
}
|
}
|
||||||
|
|
||||||
print "#### VLAN configuration "
|
print "#### VLAN configuration "
|
||||||
@ -65,3 +69,4 @@ adm5120_detect
|
|||||||
print " option proto dhcp"
|
print " option proto dhcp"
|
||||||
}' > /etc/config/network
|
}' > /etc/config/network
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
setup_switch_vlan() {
|
setup_switch_vlan() {
|
||||||
config_get ports "$CONFIG_SECTION" "eth$1"
|
config_get ports "$CONFIG_SECTION" "eth$1"
|
||||||
|
ports=`echo "$ports"| sed s/" "/""/g`
|
||||||
admswconfig eth$1 ${ports}c
|
admswconfig eth$1 ${ports}c
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user