projects
/
openwrt
/
staging
/
adrian.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87b9973
)
wl.o won't load if il0macaddr isn't set (generally as a result of people playing...
author
Mike Baker
<mbm@openwrt.org>
Sun, 19 Sep 2004 04:24:29 +0000
(
04:24
+0000)
committer
Mike Baker
<mbm@openwrt.org>
Sun, 19 Sep 2004 04:24:29 +0000
(
04:24
+0000)
SVN-Revision: 159
obsolete-buildroot/sources/openwrt/root/etc/init.d/S10boot
patch
|
blob
|
history
diff --git
a/obsolete-buildroot/sources/openwrt/root/etc/init.d/S10boot
b/obsolete-buildroot/sources/openwrt/root/etc/init.d/S10boot
index b650c9464eb86e1ad65ae7685b7f1caffb81580d..f69c881bb365c5b0c16cc6f3a2edb82d4fcd4242 100755
(executable)
--- a/
obsolete-buildroot/sources/openwrt/root/etc/init.d/S10boot
+++ b/
obsolete-buildroot/sources/openwrt/root/etc/init.d/S10boot
@@
-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}')