X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=target%2Flinux%2Framips%2Fbase-files%2Flib%2Fpreinit%2F06_set_iface_mac;h=97cacfa5ee43fb2e1294c64b31d2b6f3e0aa7c1d;hb=a88314062beef46383dd1a4e1360d87ab06e3e46;hp=4261a6c92b0cc0f05c4ccdfc58ca4d03e1bd5501;hpb=9de4cb5314d3840dda0575684aadac9aafe581aa;p=openwrt.git diff --git a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac index 4261a6c92b..97cacfa5ee 100644 --- a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac +++ b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac @@ -8,7 +8,11 @@ preinit_set_mac_address() { . /lib/ramips.sh case $(ramips_board_name) in - bc2 | nw718) + bc2 |\ + esr-9753 |\ + nw718 |\ + rt-n56u |\ + sl-r7205) mac=$(ramips_get_mac_binary factory 4) mac=$(maccalc or "$mac" "02:00:00:00:00:00") ifconfig eth0 hw ether $mac 2>/dev/null @@ -19,11 +23,24 @@ preinit_set_mac_address() { mac=$(ramips_get_mac_binary devdata 16388) ifconfig eth0 hw ether $mac 2>/dev/null ;; + all0256n |\ hw550-3g |\ - nbg-419n) + nbg-419n |\ + omni-emb |\ + w502u |\ + wr6202 |\ + xdxrn502j) mac=$(ramips_get_mac_binary factory 40) ifconfig eth0 hw ether $mac 2>/dev/null ;; + wl341v3) + mac=$(ramips_get_mac_binary board-nvram 65440) + ifconfig eth0 hw ether $mac 2>/dev/null + ;; + rt-n10-plus) + mac=$(ramips_get_mac_binary devconf 4) + ifconfig eth0 hw ether $mac 2>/dev/null + ;; esac }