1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

rewrite of the network scripts and configuration

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4323 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2006-07-30 03:09:09 +00:00
parent 31d94a76a7
commit c4f3575368
39 changed files with 482 additions and 650 deletions

View File

@@ -1,3 +1,15 @@
bridge_interface() {
(
. /etc/functions.sh
include network
scan_interfaces
cfg="$(find_config "$1")"
[ -z "$cfg" ] && return 0
config_get type "$cfg" type
[ "$type" = bridge ] && config_get "$type" bridge
)
}
scan_broadcom() {
local device="$1"
@@ -127,7 +139,7 @@ setup_broadcom() {
config_get ifname "$vif" ifname
append if_up "ifconfig $ifname up" ";$N"
[ -z "$nasopts" ] || {
config_get bridge "$vif" bridge # XXX: integrate with /etc/config/network later
bridge="$(bridge_interface "$ifname")"
eval "${vif}_ssid=\"\$ssid\""
mode="-A"
[ "$vif" = "$sta_if" ] && mode="-S"