ramips: Add support for 8devices Carambola dev board.
[openwrt/svn-archive/archive.git] / target / linux / ramips / base-files / lib / preinit / 06_set_iface_mac
index f6884c847788b640115b329ad4c1fbac37f6ee56..591c549d140db98f3526e7143a9d63672f4988d5 100644 (file)
@@ -8,9 +8,18 @@ preinit_set_mac_address() {
        . /lib/ramips.sh
 
        case $(ramips_board_name) in
+       3g-6200n)
+               mac=$(ramips_get_mac_binary factory 4)
+               ifconfig eth0 hw ether $mac 2>/dev/null
+               ;;
        bc2 |\
+       dir-620-a1 |\
+       esr-9753 |\
+       freestation5 |\
        nw718 |\
-       esr-9753)
+       psr-680w |\
+       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
@@ -21,11 +30,25 @@ preinit_set_mac_address() {
                 mac=$(ramips_get_mac_binary devdata 16388)
                 ifconfig eth0 hw ether $mac 2>/dev/null
                 ;;
+       dap-1350)
+               mac=$(ramips_get_mac_binary devdata 46)
+               ifconfig eth0 hw ether $mac 2>/dev/null
+                ;;
+       all0239-3g |\
        all0256n |\
+       all5002 |\
+       carambola |\
+       dir-615-h1 |\
+       fonera20n |\
        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 +56,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
 }