1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 18:53:52 +02:00

wl.o won't load if il0macaddr isn't set (generally as a result of people playing with clearing nvram)

SVN-Revision: 159
This commit is contained in:
Mike Baker 2004-09-19 04:24:29 +00:00
parent 87b9973a79
commit 5861a197d8

View File

@ -5,7 +5,8 @@ echo "S" > /proc/jffs2_bbc
mkdir -p /var/run
[ "$(nvram get il0macaddr)" = "00:90:4c:5f:00:2a" ] && {
[ -z "$(nvram get il0macaddr)" ] || \
[ "$(nvram get il0macaddr)" = "00:90:4c:5f:00:2a" ] && {
# if default wifi mac, set two higher than the lan mac
nvram set il0macaddr=$(nvram get et0macaddr|
awk '{OFS=FS=":";for(x=7,y=2;--x;){$x=sprintf("%02x",(y+="0x"$x)%256);y/=256}print}')