mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-17 15:54:43 +02:00
ramips: use ramips_get_mac_* functions in the preinit script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29452 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e595553be8
commit
d7a5a32c17
@ -2,30 +2,16 @@
|
|||||||
# Copyright (C) 2011 OpenWrt.org
|
# Copyright (C) 2011 OpenWrt.org
|
||||||
#
|
#
|
||||||
|
|
||||||
nw718_set_mac() {
|
preinit_set_mac_address() {
|
||||||
local part
|
|
||||||
local mac
|
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
|
. /lib/ramips.sh
|
||||||
|
|
||||||
case $(ramips_board_name) in
|
case $(ramips_board_name) in
|
||||||
bc2 | nw718)
|
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
|
esac
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user