summaryrefslogtreecommitdiff
path: root/root/etc
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2004-05-11 03:02:52 +0000
committerMike Baker <mbm@openwrt.org>2004-05-11 03:02:52 +0000
commit70050f510c5c3799e4dc54134033f432e7f4bbe0 (patch)
tree05d6b3ecd9a10059d9ec341b2ac8473272ff86b4 /root/etc
parent067b4b290e7c9500798f2e108a9ef877c39b5802 (diff)
downloadmtk-20170518-70050f510c5c3799e4dc54134033f432e7f4bbe0.zip
mtk-20170518-70050f510c5c3799e4dc54134033f432e7f4bbe0.tar.gz
mtk-20170518-70050f510c5c3799e4dc54134033f432e7f4bbe0.tar.bz2
set the wireless 2 mac addresses higher than ethernet
SVN-Revision: 26
Diffstat (limited to 'root/etc')
-rwxr-xr-xroot/etc/functions.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/root/etc/functions.sh b/root/etc/functions.sh
index 4e96ad7..8befcde 100755
--- a/root/etc/functions.sh
+++ b/root/etc/functions.sh
@@ -28,9 +28,13 @@ if_valid () (
return $?
)
+mac () {
+ echo $2|awk -F ":" '{for(x=6,y='$1';x;x--){y+=int("0x"$x);$x=sprintf("%02x",y%256);y/=256}gsub(" ",":");print$0}'
+}
wifi () (
debug "### wifi $1 ###"
if=$(awk 'gsub(":","") {print $1}' /proc/net/wireless)
+ $DEBUG ifconfig $if hw ether $(mac 2 $(nvram get et0macaddr))
$DEBUG wlconf $if $1
)