X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=target%2Flinux%2Framips%2Fbase-files%2Flib%2Fpreinit%2F06_set_iface_mac;h=b02dfab8131c8b61be4c1e01bb3e7c894fbcf9b6;hp=9f5c02446c3aa6b05c42cefb860813dbae4c29b1;hb=06add573432748d358446a672850740e3510f9a9;hpb=222337418516413e4f9c968bc3c548e4f58095c4 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 9f5c02446c..b02dfab813 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,9 +9,11 @@ preinit_set_mac_address() { case $(ramips_board_name) in bc2 |\ + esr-9753 |\ + freestation5 |\ nw718 |\ rt-n56u |\ - esr-9753) + 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 @@ -26,8 +28,12 @@ preinit_set_mac_address() { hw550-3g |\ nbg-419n |\ omni-emb |\ + w306r-v20 |\ w502u |\ - wr6202) + wl-330n |\ + wl-330n3g |\ + wr6202 |\ + xdxrn502j) mac=$(ramips_get_mac_binary factory 40) ifconfig eth0 hw ether $mac 2>/dev/null ;; @@ -35,6 +41,10 @@ preinit_set_mac_address() { 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 }