1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-08 16:23:51 +03:00

ramips: fix mac addresses on the DIR-300/600 boards

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29471 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2011-12-06 20:06:08 +00:00
parent 87cb2a5585
commit 9de4cb5314
2 changed files with 13 additions and 0 deletions

View File

@ -61,6 +61,13 @@ ramips_setup_macs()
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
;;
dir-300-b1 |\
dir-300-b2 |\
dir-600-b1)
lan_mac=$(ramips_get_mac_binary devdata 16388)
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
;;
nbg-419n)
lan_mac=$(ramips_get_mac_binary factory 4)
wan_mac=$(ramips_get_mac_binary factory 40)

View File

@ -13,6 +13,12 @@ preinit_set_mac_address() {
mac=$(maccalc or "$mac" "02:00:00:00:00:00")
ifconfig eth0 hw ether $mac 2>/dev/null
;;
dir-300-b1 |\
dir-300-b2 |\
dir-600-b1)
mac=$(ramips_get_mac_binary devdata 16388)
ifconfig eth0 hw ether $mac 2>/dev/null
;;
hw550-3g |\
nbg-419n)
mac=$(ramips_get_mac_binary factory 40)