mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 22:50:39 +02: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:
parent
b1b6a61f9c
commit
9131713285
@ -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
|
||||
)
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user