diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-05-11 03:02:52 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-05-11 03:02:52 +0000 |
commit | b1b6a61f9c6ed77a31ef34adbd45c0014aaf6e3e (patch) | |
tree | 05d6b3ecd9a10059d9ec341b2ac8473272ff86b4 | |
parent | 7f98b5445c447ff7b35933601dc66ea7a081fba8 (diff) |
set the wireless 2 mac addresses higher than ethernet
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | root/etc/functions.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/root/etc/functions.sh b/root/etc/functions.sh index 4e96ad77c..8befcde51 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 ) |