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