diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-08-15 18:55:53 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-08-15 18:55:53 +0000 |
commit | 55280cf59704b5ac70733806665ae106a6193c89 (patch) | |
tree | f68f0e6b9854e2987782dc5083e39c7fba9c21aa /target/linux/ramips/base-files/lib | |
parent | 210e9537e79dfdf0cc1031027c83e9f74942021b (diff) | |
download | upstream-55280cf59704b5ac70733806665ae106a6193c89.tar.gz upstream-55280cf59704b5ac70733806665ae106a6193c89.tar.bz2 upstream-55280cf59704b5ac70733806665ae106a6193c89.zip |
ramips: rt305x: fix mac addresses on the Netcore NW718 board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28006 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/base-files/lib')
-rw-r--r-- | target/linux/ramips/base-files/lib/preinit/06_set_iface_mac | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac new file mode 100644 index 0000000000..4be625bd1e --- /dev/null +++ b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac @@ -0,0 +1,33 @@ +# +# Copyright (C) 2011 OpenWrt.org +# + +nw718_set_mac() { + local part + local mac + + [ -z $(which maccalc) ] && return + + . /etc/functions.sh + + part=$(find_mtd_part "factory") + [ -z $part ] && return + + mac=$(dd bs=1 skip=4 count=6 if=$part 2>/dev/null | maccalc bin2mac) + [ -z $mac ] && return + + mac=$(maccalc or "$mac" "02:00:00:00:00:00") + ifconfig eth0 hw ether $mac 2>/dev/null +} + +preinit_set_mac_address() { + . /lib/ramips.sh + + case $(ramips_board_name) in + nw718) + nw718_set_mac + ;; + esac +} + +boot_hook_add preinit_main preinit_set_mac_address |