ath79: add support for AVM FRITZ!WLAN Repeater DVB-C
[openwrt/openwrt.git] / target / linux / ath79 / generic / base-files / lib / preinit / 10_fix_eth_mac.sh
1 . /lib/functions.sh
2
3 preinit_set_mac_address() {
4 case $(board_name) in
5 avm,fritz1750e|\
6 avm,fritz450e|\
7 avm,fritzdvbc)
8 ip link set dev eth0 address $(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
9 ;;
10 dlink,dap-2695-a1)
11 ip link set dev eth0 address $(mtd_get_mac_ascii bdcfg "lanmac")
12 ip link set dev eth1 address $(mtd_get_mac_ascii bdcfg "wanmac")
13 ;;
14 enterasys,ws-ap3705i)
15 ip link set dev eth0 address $(mtd_get_mac_ascii u-boot-env0 ethaddr)
16 ;;
17 siemens,ws-ap3610)
18 ip link set dev eth0 address $(mtd_get_mac_ascii cfg1 ethaddr)
19 ;;
20 esac
21 }
22
23 boot_hook_add preinit_main preinit_set_mac_address