2 # Copyright (C) 2011 OpenWrt.org
5 preinit_set_mac_address() {
10 case $(ramips_board_name) in
14 mac=$(ramips_get_mac_binary factory 4)
15 mac=$(maccalc or "$mac" "02:00:00:00:00:00")
16 ifconfig eth0 hw ether $mac 2>/dev/null
21 mac=$(ramips_get_mac_binary devdata 16388)
22 ifconfig eth0 hw ether $mac 2>/dev/null
29 mac=$(ramips_get_mac_binary factory 40)
30 ifconfig eth0 hw ether $mac 2>/dev/null
35 boot_hook_add preinit_main preinit_set_mac_address