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=bd1dac0dee36f712098c747a1970cdf7e235b7b9;hp=2d6a4b6dee6c22dffbb5e59d1ab041185ce3965b;hb=3fec0233a8e5b02f4fb6b4c646a1dc67aa8542a3;hpb=0a03c641166465667dd2a4fdee0da09b18254e64 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 2d6a4b6dee..bd1dac0dee 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,16 +5,80 @@ preinit_set_mac_address() { local mac + . /lib/functions.sh . /lib/ramips.sh case $(ramips_board_name) in - bc2 | nw718) - mac=$(ramips_get_mac_binary factory 4) - mac=$(maccalc or "$mac" "02:00:00:00:00:00") + 3g-6200n |\ + 3g-6200nl |\ + 3g300m | \ + dir-620-d1 |\ + w150m | \ + mzk-w300nh2 |\ + wl-330n |\ + wl-330n3g) + mac=$(mtd_get_mac_binary factory 4) ifconfig eth0 hw ether $mac 2>/dev/null ;; - hw550-3g) - mac=$(ramips_get_mac_binary factory 40) + bc2 |\ + broadway |\ + d105 |\ + dir-620-a1 |\ + esr-9753 |\ + freestation5 |\ + mpr-a2 | \ + nw718 |\ + psr-680w |\ + rt-n56u |\ + sl-r7205) + mac=$(mtd_get_mac_binary factory 4) + mac=$(macaddr_setbit_la "$mac") + ifconfig eth0 hw ether $mac 2>/dev/null + ;; + asl26555 |\ + dir-300-b1 |\ + dir-300-b2 |\ + dir-600-b1) + 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 |\ + all5003 |\ + carambola |\ + dir-615-h1 |\ + fonera20n |\ + rt-n13u |\ + hw550-3g |\ + nbg-419n |\ + omni-emb |\ + omni-emb-hpm |\ + tew-691gr |\ + tew-692gr |\ + w306r-v20 |\ + w502u |\ + wr6202 |\ + wnce2001 |\ + xdxrn502j) + mac=$(mtd_get_mac_binary factory 40) + ifconfig eth0 hw ether $mac 2>/dev/null + ;; + wl341v3) + mac=$(mtd_get_mac_binary board-nvram 65440) + ifconfig eth0 hw ether $mac 2>/dev/null + ;; + rt-n10-plus) + mac=$(mtd_get_mac_binary devconf 4) ifconfig eth0 hw ether $mac 2>/dev/null ;; esac