diff options
author | Steffen Weinreich <steve@weinreich.org> | 2017-04-27 23:59:22 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2017-05-18 14:47:53 +0200 |
commit | 224e5f5efa22b8a0132522367afd3b22f05d53e1 (patch) | |
tree | 6d53ab6c220b03aef69a0700ccf6c9d7133d64a7 /target/linux/ar71xx/base-files | |
parent | ec987e59c4a4c5bbf65e6e667fb13853270d58ae (diff) | |
download | upstream-224e5f5efa22b8a0132522367afd3b22f05d53e1.tar.gz upstream-224e5f5efa22b8a0132522367afd3b22f05d53e1.tar.bz2 upstream-224e5f5efa22b8a0132522367afd3b22f05d53e1.zip |
ar71xx: Add support for Teltonika RUT900
Teltonika RUT900 is a Router with LTE dual SIM, WiFi, 4x Ethernet
ports, I/O, RS232, RS485, GPS.
The device ist based on a Atheros AR9344 rev 3,
Specifications:
- 560/450/225 MHz (CPU/DDR/AHB)
- 128 MB of RAM
- 16 MB of FLASH
- Serial Console header on a Card Board edge connector
- 4x 10/100 Mbps Ethernet (3x LAN, 1x WAN)
- 2.4 GHz Wifi
- 2x external, detachable Wifi antennas
- LTE Modem Huawei ME909u-521 (Also other Modem seen)
- 2x LTE antennas
- 1x GPS antenna
- 7x LED, 1x button
- 1x USB Connector
- 1x Serial RS232
- 1x Serial RS485
- 1x MicroSD Card
The GPL sources of the device are available at www.teltonika.lt/gpl/
and are based on OpenWRT Barrier Breaker (14.07)
Running from tftp:
The Router starts into the uboot Webupdater if the Button ist pressed
more than 3 seconds, if no Network cable is attached it starts the
uboot serial console, from there the router loads the firmware image
via tftpboot from 192.168.1.2:firmware.bin (the router has the
192.168.1.1). With bootm the loaded image will be booted.
Signed-off-by: Steffen Weinreich <steve@weinreich.org>
Diffstat (limited to 'target/linux/ar71xx/base-files')
-rw-r--r-- | target/linux/ar71xx/base-files/etc/diag.sh | 3 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 3 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/upgrade/platform.sh | 3 |
3 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh index 9cad8995db..0d0ebdcd6f 100644 --- a/target/linux/ar71xx/base-files/etc/diag.sh +++ b/target/linux/ar71xx/base-files/etc/diag.sh @@ -423,6 +423,9 @@ get_status_led() { tl-wdr6500-v2) status_led="tp-link:white:system" ;; + tlt-rut900) + status_led="tlt:green:status" + ;; tube2h) status_led="alfa:green:signal4" ;; diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index a751c64a3a..8ee17f43c8 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -1154,6 +1154,9 @@ ar71xx_board_detect() { *"TL-WR941ND") name="tl-wr941nd" ;; + *"TLT-RUT900") + name="tlt-rut900" + ;; *"Tube2H") name="tube2h" ;; diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index e246f35add..1bc993450d 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -443,7 +443,8 @@ platform_check_image() { tl-wr941nd-v5|\ tl-wr941nd-v6|\ tl-wr940n-v4|\ - tl-wr941nd) + tl-wr941nd|\ + tlt-rut900) local magic_ver="0100" case "$board" in |