diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-05 17:27:04 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-05 17:27:04 +0000 |
commit | b5d7b359b2b9377f2817bcac56ec6843cb9c7ccd (patch) | |
tree | 7ad79110184781581a33fa8a14d2fcbe03a36f72 /target/linux/ramips/base-files/lib | |
parent | 4d5b940e6678be0f484f8bd6f75d8c96c6f7b242 (diff) | |
download | upstream-b5d7b359b2b9377f2817bcac56ec6843cb9c7ccd.tar.gz upstream-b5d7b359b2b9377f2817bcac56ec6843cb9c7ccd.tar.bz2 upstream-b5d7b359b2b9377f2817bcac56ec6843cb9c7ccd.zip |
ramips: use ramips_get_mac_* functions in the preinit script
SVN-Revision: 29452
Diffstat (limited to 'target/linux/ramips/base-files/lib')
-rw-r--r-- | target/linux/ramips/base-files/lib/preinit/06_set_iface_mac | 22 |
1 files changed, 4 insertions, 18 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 index 290e270530..9fef7d471a 100644 --- a/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac +++ b/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac @@ -2,30 +2,16 @@ # Copyright (C) 2011 OpenWrt.org # -nw718_set_mac() { - local part +preinit_set_mac_address() { 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 bc2 | nw718) - nw718_set_mac + mac=$(ramips_get_mac_binary factory 4) + mac=$(maccalc or "$mac" "02:00:00:00:00:00") + ifconfig eth0 hw ether $mac 2>/dev/null ;; esac } |