diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2012-11-11 21:04:30 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2012-11-11 21:04:30 +0000 |
commit | 527c4736742b1a6133808047b7d37e5b074bd307 (patch) | |
tree | c9ebdc7db931f21f6729217a40ecfbd11680226f /target/linux/ixp4xx/base-files | |
parent | ee9e3bf82e3286a677e91b9bb98d9ed25881eabb (diff) | |
download | upstream-527c4736742b1a6133808047b7d37e5b074bd307.tar.gz upstream-527c4736742b1a6133808047b7d37e5b074bd307.tar.bz2 upstream-527c4736742b1a6133808047b7d37e5b074bd307.zip |
add support for the Tonze AP-422/425
SVN-Revision: 34165
Diffstat (limited to 'target/linux/ixp4xx/base-files')
-rw-r--r-- | target/linux/ixp4xx/base-files/lib/preinit/05_set_ether_mac_ixp4xx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/ixp4xx/base-files/lib/preinit/05_set_ether_mac_ixp4xx b/target/linux/ixp4xx/base-files/lib/preinit/05_set_ether_mac_ixp4xx index e19e0ec250..e707dabf05 100644 --- a/target/linux/ixp4xx/base-files/lib/preinit/05_set_ether_mac_ixp4xx +++ b/target/linux/ixp4xx/base-files/lib/preinit/05_set_ether_mac_ixp4xx @@ -17,6 +17,15 @@ set_ether_mac() { if [ "$(ifconfig eth0 2>/dev/null | grep -c 00:00:00:00:00:00)" == "1" ]; then ifconfig eth0 hw ether $(fconfig -s -r -d /dev/$RB_CONFIG -n zcom_npe_esa) fi + + # Others (*cough*, Tonze) are dumb enough to not handle mac addresses at all + + if [ "$(ifconfig eth0 2>/dev/null | grep -c 00:00:00:00:00:00)" == "1" ]; then + ifconfig eth0 hw ether 00:11:22:33:44:55 + fi + if [ "$(ifconfig eth1 2>/dev/null | grep -c 00:00:00:00:00:00)" == "1" ]; then + ifconfig eth1 hw ether 00:11:22:33:44:56 + fi } boot_hook_add preinit_main set_ether_mac |