X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=target%2Flinux%2Framips%2Fbase-files%2Flib%2Fpreinit%2F06_set_iface_mac;h=985d1bc8f7516455663e5e56ab4609738c29ad8a;hb=910b705155f90c1e345c614c1212ee26a46117d6;hp=f523d690d47418f9b63fa6900e423bc8b5640e60;hpb=e9c4d3d1f2dd990ebd9474ceda1c77b45678c6bd;p=openwrt%2Fopenwrt.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 f523d690d4..985d1bc8f7 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 @@ -5,42 +5,74 @@ preinit_set_mac_address() { local mac + . /lib/functions.sh . /lib/ramips.sh case $(ramips_board_name) in + 3g-6200n |\ + 3g-6200nl |\ + 3g300m | \ + mzk-w300nh2 |\ + wl-330n |\ + wl-330n3g) + mac=$(mtd_get_mac_binary factory 4) + ifconfig eth0 hw ether $mac 2>/dev/null + ;; bc2 |\ + broadway |\ + d105 |\ + dir-620-a1 |\ esr-9753 |\ freestation5 |\ nw718 |\ + psr-680w |\ rt-n56u |\ sl-r7205) - mac=$(ramips_get_mac_binary factory 4) - mac=$(maccalc or "$mac" "02:00:00:00:00:00") + mac=$(mtd_get_mac_binary factory 4) + mac=$(macaddr_setbit_la "$mac") ifconfig eth0 hw ether $mac 2>/dev/null ;; dir-300-b1 |\ dir-300-b2 |\ dir-600-b1) - mac=$(ramips_get_mac_binary devdata 16388) + mac=$(mtd_get_mac_binary devdata 16388) ifconfig eth0 hw ether $mac 2>/dev/null ;; + dir-645) + mac=$(mtd_get_mac_ascii nvram lanmac) + mac=$(macaddr_setbit_la "$mac") + ifconfig eth0 hw ether $mac 2>/dev/null + ;; + dap-1350) + mac=$(mtd_get_mac_binary devdata 46) + ifconfig eth0 hw ether $mac 2>/dev/null + ;; + all0239-3g |\ all0256n |\ + all5002 |\ + carambola |\ + dir-615-h1 |\ + fonera20n |\ + rt-n13u |\ hw550-3g |\ nbg-419n |\ omni-emb |\ + omni-emb-hpm |\ + tew-691gr |\ + tew-692gr |\ + w306r-v20 |\ w502u |\ - wl-330n |\ wr6202 |\ xdxrn502j) - mac=$(ramips_get_mac_binary factory 40) + mac=$(mtd_get_mac_binary factory 40) ifconfig eth0 hw ether $mac 2>/dev/null ;; wl341v3) - mac=$(ramips_get_mac_binary board-nvram 65440) + mac=$(mtd_get_mac_binary board-nvram 65440) ifconfig eth0 hw ether $mac 2>/dev/null ;; rt-n10-plus) - mac=$(ramips_get_mac_binary devconf 4) + mac=$(mtd_get_mac_binary devconf 4) ifconfig eth0 hw ether $mac 2>/dev/null ;; esac