1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 02:51:05 +03:00

move wifi mac fix to S10boot

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2004-05-11 03:55:23 +00:00
parent b1b6a61f9c
commit 9131713285
2 changed files with 6 additions and 4 deletions

View File

@ -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
)

View File

@ -3,6 +3,12 @@ sysctl -p
echo "S" > /proc/jffs2_bbc
# networking stub
[ "$(nvram get il0macaddr)" = "00:90:4c:5f:00:2a" ] && {
# force unique mac
nvram set il0macaddr=$(nvram get et0macaddr|
awk -F ":" '{for(x=6,y=2;x;x--){y+=int("0x"$x);$x=sprintf("%02x",y%256);y/=256}gsub(" ",":");print$0}')
}
insmod et
insmod wl