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=9a4d515b19bc9b1c8c946f54da5e0f2d83fdcf5f;hpb=64435afc83db0412d180ee6c9a0d177b3d45568f;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 9a4d515b19..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 @@ -9,8 +9,10 @@ preinit_set_mac_address() { case $(ramips_board_name) in bc2 |\ + esr-9753 |\ nw718 |\ - esr-9753) + 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 @@ -25,10 +27,20 @@ preinit_set_mac_address() { hw550-3g |\ nbg-419n |\ omni-emb |\ - w502u) + 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 }