2 # Copyright (C) 2011 OpenWrt.org
5 preinit_set_mac_address() {
10 case $(ramips_board_name) in
15 mac=$(ramips_get_mac_binary factory 4)
16 mac=$(maccalc or "$mac" "02:00:00:00:00:00")
17 ifconfig eth0 hw ether $mac 2>/dev/null
22 mac=$(ramips_get_mac_binary devdata 16388)
23 ifconfig eth0 hw ether $mac 2>/dev/null
31 mac=$(ramips_get_mac_binary factory 40)
32 ifconfig eth0 hw ether $mac 2>/dev/null
35 mac=$(ramips_get_mac_binary board-nvram 65440)
36 ifconfig eth0 hw ether $mac 2>/dev/null
41 boot_hook_add preinit_main preinit_set_mac_address