[mvebu]: fixup mac addresses on the WRT1900AC
[openwrt/svn-archive/archive.git] / target / linux / mvebu / base-files / lib / preinit / 06_set_iface_mac
1 #
2 # Copyright (C) 2014 OpenWrt.org
3 #
4
5 preinit_set_mac_address() {
6 local mac
7
8 . /lib/functions.sh
9 . /lib/mvebu.sh
10
11 case $(mvebu_board_name) in
12 armada-xp-mamba)
13 mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
14 ifconfig eth0 hw ether $mac 2>/dev/null
15 ifconfig eth1 hw ether $mac 2>/dev/null
16 ;;
17 esac
18 }
19
20 boot_hook_add preinit_main preinit_set_mac_address