mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-09 08:50:15 +02:00
70a7b4cd68
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17100 3c298f89-4303-0410-b956-a3cf2f4a3e73
25 lines
462 B
Plaintext
25 lines
462 B
Plaintext
#
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
#
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
tew632brp_init_mac_address() {
|
|
local mtd mac
|
|
|
|
mtd=$(grep config /proc/mtd | cut -d: -f1)
|
|
[ -z $mtd ] && return
|
|
|
|
mac=$(grep lan_mac /dev/$mtd | cut -d= -f2)
|
|
[ ! -z $mac ] && ifconfig eth0 hw ether $mac 2>/dev/null
|
|
|
|
mac=$(grep wan_mac /dev/$mtd | cut -d= -f2)
|
|
[ ! -z $mac ] && ifconfig eth1 hw ether $mac 2>/dev/null
|
|
}
|
|
|
|
case $(ar71xx_board_name) in
|
|
tew-632brp)
|
|
tew632brp_init_mac_address
|
|
;;
|
|
esac
|