diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-04-06 06:45:07 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-04-06 06:45:07 +0000 |
commit | e295a077cea86adad6d897b72b2b8b371a3d7fc4 (patch) | |
tree | 8977dcd832938312416046459d3ead68e323aad6 /target/linux/ar71xx/base-files | |
parent | fe6d66afe2e150d70337d25b07bc7b16898ff049 (diff) | |
download | upstream-e295a077cea86adad6d897b72b2b8b371a3d7fc4.tar.gz upstream-e295a077cea86adad6d897b72b2b8b371a3d7fc4.tar.bz2 upstream-e295a077cea86adad6d897b72b2b8b371a3d7fc4.zip |
ar71xx: initial support for Mikrotik RB751G-2HnD and RB751U-2HnD
Great collaboration on these two fantastic routers on the openwrt forum:
https://forum.openwrt.org/viewtopic.php?id=32320
Above all kudos to aryufan. Well done and thank you everyone else who
contributed.
To-Do: LED for wlan is not yet activated
To-Do: TxPower over 20dBm (RB751U) or 22dBm (RB751G) are not accepted by
the router
Signed-off-by: Hanno Schupp <hanno.schupp@gmail.com>
[juhosg: fix line wrapped patch, fix checkpatch errors, add missing
kernel patches]
SVN-Revision: 31208
Diffstat (limited to 'target/linux/ar71xx/base-files')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/uci-defaults/network | 2 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/network b/target/linux/ar71xx/base-files/etc/uci-defaults/network index 2aa91d315d..3863705f86 100755 --- a/target/linux/ar71xx/base-files/etc/uci-defaults/network +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/network @@ -63,6 +63,7 @@ routerstation-pro) ;; rb-750gl |\ +rb-751g |\ wzr-hp-g450h) ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" ucidef_add_switch "switch0" "1" "1" @@ -153,6 +154,7 @@ dir-615-c1 |\ dir-615-e4 |\ ja76pf |\ rb-750 |\ +rb-751 |\ tew-632brp |\ tl-mr3220 |\ tl-mr3420 |\ diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index be42aad9e5..3802e12179 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -250,6 +250,12 @@ ar71xx_board_detect() { *"RouterBOARD 750GL") name="rb-750gl" ;; + *"RouterBOARD 751") + name="rb-751" + ;; + *"RouterBOARD 751G") + name="rb-751g" + ;; *"Rocket M") name="rocket-m" ;; |