summaryrefslogtreecommitdiffstats
path: root/root/etc/functions.sh
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2004-05-11 03:55:23 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2004-05-11 03:55:23 +0000
commit91317132859300a8719eecafece9b3db9c7a7f6f (patch)
tree3d8e390e3e2e5567cb65fd8c44ef21097ba2438c /root/etc/functions.sh
parentb1b6a61f9c6ed77a31ef34adbd45c0014aaf6e3e (diff)
move wifi mac fix to S10boot
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'root/etc/functions.sh')
-rwxr-xr-xroot/etc/functions.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/root/etc/functions.sh b/root/etc/functions.sh
index 8befcde51..4e96ad77c 100755
--- a/root/etc/functions.sh
+++ b/root/etc/functions.sh
@@ -28,13 +28,9 @@ 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
)