mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:14:05 +02:00
[brcm-2.4] change switch config to swconfig style format to remain consistent accross platforms
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18425 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
71a22dbb1b
commit
b74589690e
@ -1,33 +1,38 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# Copyright (C) 2006-2009 OpenWrt.org
|
||||||
|
|
||||||
|
setup_switch_hw() {
|
||||||
|
local dev="$1"
|
||||||
|
local enable reset evlan
|
||||||
|
|
||||||
|
config_get_bool enable "$dev" enable 1
|
||||||
|
config_get_bool evlan "$dev" enable_vlan 1
|
||||||
|
config_get_bool reset "$dev" reset 1
|
||||||
|
|
||||||
|
local proc="/proc/switch/$dev"
|
||||||
|
[ -d "$proc" ] && {
|
||||||
|
echo "$reset" > "$proc/reset"
|
||||||
|
echo "$evlan" > "$proc/enable_vlan"
|
||||||
|
echo "$enable" > "$proc/enable"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
setup_switch_vlan() {
|
setup_switch_vlan() {
|
||||||
DIR="/proc/switch/$CONFIG_SECTION/vlan/$1"
|
local s="$1"
|
||||||
[ -d "$DIR" ] || return 0
|
local dev vlan ports
|
||||||
|
|
||||||
config_get ports "$CONFIG_SECTION" "vlan$1"
|
config_get dev "$s" device
|
||||||
echo "$ports" > "$DIR/ports"
|
config_get vlan "$s" vlan
|
||||||
|
config_get ports "$s" ports
|
||||||
|
|
||||||
|
[ -n "$dev" ] && [ -n "$vlan" ] && {
|
||||||
|
local proc="/proc/switch/$dev/vlan/$vlan/ports"
|
||||||
|
[ -f "$proc" ] && echo "$ports" > "$proc"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
setup_switch() {
|
setup_switch() {
|
||||||
config_cb() {
|
|
||||||
case "$1" in
|
|
||||||
switch)
|
|
||||||
[ -n "$2" -a -d "/proc/switch/$2" ] && {
|
|
||||||
echo 1 > "/proc/switch/$2/reset"
|
|
||||||
echo 1 > "/proc/switch/$2/enable"
|
|
||||||
echo 1 > "/proc/switch/$2/enable_vlan"
|
|
||||||
option_cb() {
|
|
||||||
case "$1" in
|
|
||||||
vlan*) setup_switch_vlan "${1##vlan}";;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
}
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
option_cb() { return 0; }
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
config_load network
|
config_load network
|
||||||
|
config_foreach setup_switch_hw switch
|
||||||
|
config_foreach setup_switch_vlan switch_vlan
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,16 @@ start() {
|
|||||||
if (c[name] != "") print " option " cfgname " \"" c[name] "\""
|
if (c[name] != "") print " option " cfgname " \"" c[name] "\""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function vlan(id, name) {
|
||||||
|
if (c[name] != "") {
|
||||||
|
print "config switch_vlan eth0_" id
|
||||||
|
print " option device \"eth0\""
|
||||||
|
print " option vlan " id
|
||||||
|
print " option ports \"" c[name] "\""
|
||||||
|
print ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function macinc(mac, maca, i, result) {
|
function macinc(mac, maca, i, result) {
|
||||||
split(mac, maca, ":")
|
split(mac, maca, ":")
|
||||||
for (i = 1; i <= 6; i++) maca[i] = "0x" maca[i]
|
for (i = 1; i <= 6; i++) maca[i] = "0x" maca[i]
|
||||||
@ -165,10 +175,10 @@ start() {
|
|||||||
if (c["vlan0ports"] || c["vlan1ports"]) {
|
if (c["vlan0ports"] || c["vlan1ports"]) {
|
||||||
print "#### VLAN configuration "
|
print "#### VLAN configuration "
|
||||||
print "config switch eth0"
|
print "config switch eth0"
|
||||||
p("vlan0", "vlan0ports")
|
print " option enable 1"
|
||||||
p("vlan1", "vlan1ports")
|
print ""
|
||||||
print ""
|
vlan(0, "vlan0ports")
|
||||||
print ""
|
vlan(1, "vlan1ports")
|
||||||
}
|
}
|
||||||
print "#### Loopback configuration"
|
print "#### Loopback configuration"
|
||||||
print "config interface loopback"
|
print "config interface loopback"
|
||||||
|
Loading…
Reference in New Issue
Block a user