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/ath79/generic/base-files/lib/preinit/10_fix_eth_mac.sh

14 lines
233 B
Bash

#!/bin/sh
. /lib/functions.sh
preinit_set_mac_address() {
case $(board_name) in
siemens,ws-ap3610)
ip link set dev eth0 address $(mtd_get_mac_ascii cfg1 ethaddr)
;;
esac
}
boot_hook_add preinit_main preinit_set_mac_address