You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/target/linux/apm821xx/base-files/lib/preinit/05_set_iface_mac_apm821xx

16 lines
286 B
Bash

#!/bin/sh
. /lib/apm821xx.sh
preinit_set_mac_address() {
case $(apm821xx_board_name) in
mr24|\
mx60)
mac_lan=$(mtd_get_mac_binary_ubi board-config 102)
[ -n "$mac_lan" ] && ifconfig eth0 hw ether "$mac_lan"
;;
esac
}
boot_hook_add preinit_main preinit_set_mac_address