diff options
author | Anton Arapov <arapov@gmail.com> | 2018-12-29 01:28:27 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2019-01-05 12:28:22 +0100 |
commit | 52f2d7d2a9dc3e142bb957462a30806eb5cebaf4 (patch) | |
tree | ee2f1c8361272cedff87f220d059c3a0093425fb /target/linux/ramips/base-files | |
parent | a54129d8aa62e63d2e1ab483cf67411d144f19d9 (diff) | |
download | upstream-52f2d7d2a9dc3e142bb957462a30806eb5cebaf4.tar.gz upstream-52f2d7d2a9dc3e142bb957462a30806eb5cebaf4.tar.bz2 upstream-52f2d7d2a9dc3e142bb957462a30806eb5cebaf4.zip |
ramips: add RB750Gr3 native support
This patch adds support of MikroTik RouterBOARD 750Gr3, without the need
to reflashing the bootloader.
Installation through RouterBoot follows the usual MikroTik method
https://openwrt.org/toh/mikrotik/common
Since the image isn't compatible with RouterBOARD 750Gr3 installations
which have replaced the bootloader, the former used userspace boardname
is not added to the SUPPORTED_DEVICES, to prevent a brick while trying
to upgrade to the image with native support.
Signed-off-by: Anton Arapov <arapov@gmail.com>
Signed-off-by: Thibaut VARĂˆNE <hacks@slashdirt.org>
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/ramips/base-files')
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/02_network | 2 | ||||
-rwxr-xr-x | target/linux/ramips/base-files/lib/ramips.sh | 3 | ||||
-rwxr-xr-x | target/linux/ramips/base-files/lib/upgrade/platform.sh | 1 |
3 files changed, 2 insertions, 4 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 2dbd891574..80940db763 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -222,9 +222,9 @@ ramips_setup_interfaces() jhr-n805r|\ jhr-n825r|\ jhr-n926r|\ + mikrotik,rb750gr3|\ mikrotik,rbm33g|\ mzk-wdpr|\ - rb750gr3|\ rt-n14u|\ skylab,skw92a|\ tplink,c20-v4|\ diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh index ca71ef3b84..49bed87c48 100755 --- a/target/linux/ramips/base-files/lib/ramips.sh +++ b/target/linux/ramips/base-files/lib/ramips.sh @@ -415,9 +415,6 @@ ramips_board_detect() { *"R6220") name="r6220" ;; - *"RB750Gr3") - name="rb750gr3" - ;; *"RE350 v1") name="re350-v1" ;; diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh index 97fbaefea6..a50e943bc9 100755 --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh @@ -13,6 +13,7 @@ platform_pre_upgrade() { local board=$(board_name) case "$board" in + mikrotik,rb750gr3|\ mikrotik,rbm11g|\ mikrotik,rbm33g) [ -z "$(rootfs_type)" ] && mtd erase firmware |