ramips: rt305x: add support for the ALFA Networks W502U (R36) board
[openwrt.git] / target / linux / ramips / base-files / lib / preinit / 06_set_iface_mac
1 #
2 # Copyright (C) 2011 OpenWrt.org
3 #
4
5 preinit_set_mac_address() {
6         local mac
7
8         . /lib/ramips.sh
9
10         case $(ramips_board_name) in
11         bc2 | nw718 | esr-9753)
12                 mac=$(ramips_get_mac_binary factory 4)
13                 mac=$(maccalc or "$mac" "02:00:00:00:00:00")
14                 ifconfig eth0 hw ether $mac 2>/dev/null
15                 ;;
16         dir-300-b1 |\
17         dir-300-b2 |\
18         dir-600-b1)
19                 mac=$(ramips_get_mac_binary devdata 16388)
20                 ifconfig eth0 hw ether $mac 2>/dev/null
21                 ;;
22         hw550-3g |\
23         nbg-419n |\
24         omni-emb |\
25         w502u)
26                 mac=$(ramips_get_mac_binary factory 40)
27                 ifconfig eth0 hw ether $mac 2>/dev/null
28                 ;;
29         esac
30 }
31
32 boot_hook_add preinit_main preinit_set_mac_address