diff options
author | John Crispin <john@openwrt.org> | 2015-11-02 10:17:51 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-11-02 10:17:51 +0000 |
commit | 3760b95702b65de9d6d0f6a1029a654e3b11f72f (patch) | |
tree | 1d49305c616b895704867656e7327df82289d96b /target/linux/ramips/base-files/etc/board.d/02_network | |
parent | 83693c911a3c4788d44815c6c61cd6f7be6542d5 (diff) | |
download | mtk-20170518-3760b95702b65de9d6d0f6a1029a654e3b11f72f.zip mtk-20170518-3760b95702b65de9d6d0f6a1029a654e3b11f72f.tar.gz mtk-20170518-3760b95702b65de9d6d0f6a1029a654e3b11f72f.tar.bz2 |
ramips: add support for Dovado tiny AC
Add support for Dovado tiny AC wifi router.
Soc: mt7620a
ram: 64MB
flash: 8MB
1x usb 2.0
two gigabit lan ports
5ghz wlan is not supported on this board since there is no gpl driverfor mt7610e wifi chip.
Signed-off-by: Andrej Vlasic <andrej.vlasic0@gmail.com>
SVN-Revision: 47348
Diffstat (limited to 'target/linux/ramips/base-files/etc/board.d/02_network')
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/02_network | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/etc/board.d/02_network b/target/linux/ramips/base-files/etc/board.d/02_network index c77909f..21e3641 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -334,6 +334,10 @@ ramips_setup_macs() lan_mac=$(cat /sys/class/net/eth0/address) wan_mac=$(macaddr_add "$lan_mac" 4) ;; + tiny-ac) + lan_mac=$(mtd_get_mac_ascii u-boot-env LAN_MAC_ADDR) + wan_mac=$(mtd_get_mac_ascii u-boot-env WAN_MAC_ADDR) + ;; w306r-v20) lan_mac=$(cat /sys/class/net/eth0/address) wan_mac=$(macaddr_add "$lan_mac" 5) |