diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-12-03 18:35:31 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-12-03 18:35:31 +0000 |
commit | 86bfe0a7013f1d633e74ca8fe3eef956e9f69f53 (patch) | |
tree | 92e4cf9d6aaf129ae8ad31f9108966e3fc8d9cb8 /package/mac80211 | |
parent | 9e6c05a20de983a8f983f526ed716f1e5c6e16ab (diff) | |
download | upstream-86bfe0a7013f1d633e74ca8fe3eef956e9f69f53.tar.gz upstream-86bfe0a7013f1d633e74ca8fe3eef956e9f69f53.tar.bz2 upstream-86bfe0a7013f1d633e74ca8fe3eef956e9f69f53.zip |
mac80211: rename autogenerated wifi-device sections from wifi* to radio* to prevent conflicts with madwifi interface naming
SVN-Revision: 18627
Diffstat (limited to 'package/mac80211')
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index bc6cc1449a..7a3ed9a682 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -289,7 +289,7 @@ detect_mac80211() { devidx=0 config_load wireless while :; do - config_get type "wifi$devidx" type + config_get type "radio$devidx" type [ -n "$type" ] || break devidx=$(($devidx + 1)) done @@ -318,7 +318,7 @@ detect_mac80211() { iw phy "$dev" info | grep -q '2412 MHz' || { mode_band="a"; channel="36"; } cat <<EOF -config wifi-device wifi$devidx +config wifi-device radio$devidx option type mac80211 option channel ${channel} option macaddr $(cat /sys/class/ieee80211/${dev}/macaddress) @@ -328,7 +328,7 @@ config wifi-device wifi$devidx $ht_capab config wifi-iface - option device wifi$devidx + option device radio$devidx option network lan option mode ap option ssid OpenWrt |