fix broken init file and some cleanup
SVN-Revision: 10613
This commit is contained in:
parent
d650dae3a2
commit
515e65dd5a
2 changed files with 14 additions and 8 deletions
|
@ -8,18 +8,22 @@ start() {
|
|||
|
||||
mkdir -p /etc/config
|
||||
|
||||
adm5120_detect() {
|
||||
board_name=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /system type/ {print $2}' /proc/cpuinfo)
|
||||
|
||||
case "$board_name" in
|
||||
"Compex WP54"*)
|
||||
board="WP54";;
|
||||
board="Compex WP54";;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
|
||||
echo "$board" |awk '
|
||||
board=$1
|
||||
|
||||
function p(cfgname, name) {
|
||||
if (c[name] != "") print " option " cfgname " \"" c[name] "\""
|
||||
}
|
||||
|
||||
adm5120_detect
|
||||
BEGIN {
|
||||
FS="="
|
||||
c["lan_ifname"]="eth0"
|
||||
|
@ -29,9 +33,9 @@ adm5120_detect
|
|||
}
|
||||
|
||||
END {
|
||||
if (model == "Compex WP54") {
|
||||
c["vlan0ports"]="0"
|
||||
c["vlan1ports"]="1"
|
||||
if (board == "Compex WP54") {
|
||||
c["eth0ports"]="0"
|
||||
c["eth1ports"]="1"
|
||||
}
|
||||
|
||||
print "#### VLAN configuration "
|
||||
|
@ -65,3 +69,4 @@ adm5120_detect
|
|||
print " option proto dhcp"
|
||||
}' > /etc/config/network
|
||||
}
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
setup_switch_vlan() {
|
||||
config_get ports "$CONFIG_SECTION" "eth$1"
|
||||
ports=`echo "$ports"| sed s/" "/""/g`
|
||||
admswconfig eth$1 ${ports}c
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue