projects
/
openwrt
/
staging
/
zorun.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
067b4b2
)
set the wireless 2 mac addresses higher than ethernet
author
Mike Baker
<mbm@openwrt.org>
Tue, 11 May 2004 03:02:52 +0000
(
03:02
+0000)
committer
Mike Baker
<mbm@openwrt.org>
Tue, 11 May 2004 03:02:52 +0000
(
03:02
+0000)
SVN-Revision: 26
root/etc/functions.sh
patch
|
blob
|
history
diff --git
a/root/etc/functions.sh
b/root/etc/functions.sh
index 4e96ad77ca21d3bc315aee7fc4e7f3bed00907fe..8befcde51eca8e7946443712dc93c830a6b1260f 100755
(executable)
--- 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
)