diff options
author | John Crispin <john@openwrt.org> | 2013-11-07 12:46:24 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-11-07 12:46:24 +0000 |
commit | 7ee1546ca37e40bc8641e9525d1f6f465ac6866e (patch) | |
tree | 53a5d2a97df995de676393a45e182b3c0e7d2403 | |
parent | 8965a29bb0bc8cf83d58844df07166ace0c20b8f (diff) | |
download | upstream-7ee1546ca37e40bc8641e9525d1f6f465ac6866e.tar.gz upstream-7ee1546ca37e40bc8641e9525d1f6f465ac6866e.tar.bz2 upstream-7ee1546ca37e40bc8641e9525d1f6f465ac6866e.zip |
lantiq: fix TDW8970 lan/wan mac
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 38677
-rw-r--r-- | target/linux/lantiq/base-files/etc/uci-defaults/02_network | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/02_network b/target/linux/lantiq/base-files/etc/uci-defaults/02_network index 86a47b4a07..ed556fca19 100644 --- a/target/linux/lantiq/base-files/etc/uci-defaults/02_network +++ b/target/linux/lantiq/base-files/etc/uci-defaults/02_network @@ -40,6 +40,8 @@ vpi=1 vci=32 encaps="llc" payload="bridged" +lan_mac="" +wan_mac="" board=$(lantiq_board_id) @@ -97,10 +99,16 @@ P2601HNFX) ucidef_add_switch "switch0" "1" "1" ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t" ;; + +TDW8970) + lan_mac=$(mtd_get_mac_binary boardconfig 61696) + wan_mac=$(macaddr_add "$lan_mac" 1) + ;; esac [ -z "$(ls /lib/modules/`uname -r`/ltq_atm*)" ] || set_atm_wan "$vpi" "$vci" "$encaps" "$payload" - +[ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac +[ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac uci commit network |