ramips: rt305x: add support for the Asus WL-330N3G board
[openwrt/openwrt.git] / target / linux / ramips / base-files / lib / preinit / 06_set_iface_mac
index f6884c847788b640115b329ad4c1fbac37f6ee56..b02dfab8131c8b61be4c1e01bb3e7c894fbcf9b6 100644 (file)
@@ -9,8 +9,11 @@ preinit_set_mac_address() {
 
        case $(ramips_board_name) in
        bc2 |\
+       esr-9753 |\
+       freestation5 |\
        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,7 +28,12 @@ preinit_set_mac_address() {
        hw550-3g |\
        nbg-419n |\
        omni-emb |\
-       w502u)
+       w306r-v20 |\
+       w502u    |\
+       wl-330n |\
+       wl-330n3g |\
+       wr6202 |\
+       xdxrn502j)
                mac=$(ramips_get_mac_binary factory 40)
                ifconfig eth0 hw ether $mac 2>/dev/null
                ;;
@@ -33,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
 }