Skip to content
Snippets Groups Projects
  1. May 10, 2016
  2. Apr 26, 2016
  3. Apr 21, 2016
    • John Crispin's avatar
      ramips: Add support for ZBT WG3526 · 30fbc1a4
      John Crispin authored
      
      The WG3526 is the follow-up to the 2626 and is mostly the same, with the
      excaption that the mt7602 has been replaced with the mt7603. The internal wifi
      setup has also changed slightly. Based on my tests, everything that worked on
      the 2626 works on the 3526 and with roughly the same performance.
      
      v1->v2:
      * Remove some references to 2626 that I had missed in the dts.
      
      v2->v3:
      * Update patch to match new file structure.
      * Removed SD driver to be consistent with other MT7621 targets.
      
      Signed-off-by: default avatarKristian Evensen <kristian.evensen@gmail.com>
      
      SVN-Revision: 49213
      30fbc1a4
    • John Crispin's avatar
      ramips: add support for ELECOM WRH-300CR · 37b50fdb
      John Crispin authored
      
      ELECOM WRH-300CR is MT7620N based very small Wi-Fi router with 64MiB
      DDR2 SDRAM, 16MiB SPI Flash, one fast ethernet port, and (internal but
      easy-to-access) UART.
      
      it also has internal USB hub and USB card reader which provide one USB
      port, one SD card slot, and one microSD card slot.
      
      Signed-off-by: default avatarYuheiOKAWA <tochiro.srchack@gmail.com>
      Signed-off-by: default avatarFUKAUMI Naoki <naobsd@gmail.com>
      
      SVN-Revision: 49211
      37b50fdb
  4. Apr 20, 2016
  5. Mar 16, 2016
  6. Mar 10, 2016
    • John Crispin's avatar
      ramips: Add support for GL-MT750 · be796292
      John Crispin authored
      This patch adds support for GL-MT750.
      GL-MT750 is powered by MT7620A and MT7610e, dual band 802.11ac, 2.4G 300Mbps and 5G 450Mbps.
      It has 5 LANs, MMC interface, USB, a lot of IOs and PoE support.
      
      SVN-Revision: 48994
      be796292
    • John Crispin's avatar
      ramips: Add support for GL-MT300N · be53e5a1
      John Crispin authored
      This patch adds support for GL-MT300N.
      GL-MT300N is powered by MT7620N with 16MB flash, 64MB RAM,
      2 LANs, USB, UART, GPIO and PoE support.
      
      SVN-Revision: 48993
      be53e5a1
    • John Crispin's avatar
      ramips: Add support for GL-MT300A · 96ee39b1
      John Crispin authored
      This patches adds support for GL-MT300A.
      GL-MT300A is powered by MT7620A. It has 16MB flash, 128MB RAM,
      Two LANs, USB, UART and MMC daughter board.
      
      SVN-Revision: 48992
      96ee39b1
  7. Mar 08, 2016
  8. Mar 04, 2016
  9. Mar 03, 2016
  10. Mar 01, 2016
  11. Feb 28, 2016
  12. Feb 15, 2016
    • John Crispin's avatar
      ramips: Add support for Phicomm PSG1208 · 8b38a945
      John Crispin authored
      
      This patch adds support for Phicomm PSG1208.This is a router with MT7620A SoC with 8M flash and 64M ram.
      The WPS led is uesd as status_led because the power light can't be controlled with GPIO.
      It seems that the 5g wifi led is connected to MT7612E and it can't be controlled with GPIO too.
      
      Signed-off-by: default avatarChuanhong Guo <gch981213@gmail.com>
      
      SVN-Revision: 48721
      8b38a945
  13. Feb 12, 2016
    • John Crispin's avatar
      ramips: Add support for Netgear EX2700 · 9f9682a7
      John Crispin authored
      
      This patch adds support for the Netgear EX2700 and builds an approriate
      sysupgrade image.
      
      What's missing is the option to build a factory image flashable via the
      router's stock web interface, but this approach is hindered by the fact
      that u-boot operforms an additional integrity check, which expects a
      uImage header in the last 64 bytes of the "kernel" partition, which
      the bootloader expects to be 960k, a size exceeded by the standard
      OpenWrt kernel.
      
      Signed-off-by: default avatarJoseph C. Lehner <joseph.c.lehner@gmail.com>
      
      SVN-Revision: 48698
      9f9682a7
  14. Jan 01, 2016
  15. Dec 12, 2015
    • John Crispin's avatar
      ramips: add support for Ubiquiti EdgeRouter X (UBNT-ERX) · 4e31b2e8
      John Crispin authored
      
      This router is based on MT7621 SoC, no wifi, no usb, nand.
      
      Works:
      * Boots.
      * Ethernet.
      * Switch.
      * Button (reset).
      * Flashing OpenWrt from stock firmware.
      * Upgrading OpenWrt.
      
      Doesn't work:
      * No GPIO leds. All leds are controlled by switch,
        but stock firmware was able to control them.
      * SoC has crypto engine but no open driver.
      * SoC has nat acceleration, but no open driver.
      * This router has 2MB spi flash soldered in but MT
        nand/spi drivers do not support pin sharing,
        so it is not accessable and disabled. Stock
        firmware could read it and it was empty.
      * PoE out.
      
      Router has serial pins populated. If looking at the top
      of the router, then counting from Eth sockets pins go as:
      'GND, RX, TX, GND'. 3.3v, 57600.
      
      U-boot bootloader supports tftpboot, controlled from serial.
      This router has two kernel partitions: 'live' and 'backup'.
      They are swapped during flashing (on both stock and OpenWrt).
      Active partition is controlled by a flag in a factory partition.
      U-boot has custom command to switch active kernel partition.
      Kernel partitions are 'bare flash' 3MB. Stock bootloader has
      no UBI support. Stock rootfs is UBIFS.
      
      Flashing procedure.
      Stock firmware uses custom kernel patch to mount squashfs
      from a file that is located on UBIFS volume. This makes wiping
      out this volume from within stock firmware difficult.
      Instead this patch builds image that is flashable by stock firmware
      and contains initrams image (with minimal set of packages
      to fit into kernel partition). Once this is flashed one can reboot
      into initramfs OpenWrt and use sysupgrade to flash OpenWrt including
      rootfs into nand.
      Note: factory image is only built if initramfs image is enabled.
      
      Signed-off-by: default avatarNikolay Martynov <mar.kolya@gmail.com>
      
      SVN-Revision: 47881
      4e31b2e8
  16. Dec 11, 2015
    • John Crispin's avatar
      ramips: add additional support for MQmaker WiTi board · 9f140068
      John Crispin authored
      
      The board is based on mt7621AT cpu, and has 16mb nor flash, 256mb of ram,
      2 sata ports, microsd card slot, 1 USB 3.0 port and at least one 2.4 and
      one 5 ghz antenna.
      
      This is the 6th submission that adds support for XHCI in the device tree
      file, along with switching the location of the 2 radio's and addition of
      the kmod-i2c-mt7621 in the default packages of the profile.
      
      Signed-off-by: default avatarSebastian Careba <nitroshift@yahoo.com>
      
      SVN-Revision: 47845
      9f140068
  17. Nov 24, 2015
    • John Crispin's avatar
      ralink: add support for netis WF-2881 · 8c1f5141
      John Crispin authored
      
      netis WF-2881 is an MT7621AT based router with MT7602EN, MT7612EN.
      It has 128MB DDR3, 128MB SLC NAND FLASH, 5-port Gbps switch and 1x USB 3.0.
      The following patch adds support for this device.
      
      this device only works on top of UBI.
      
      Tested and working:
      * ethernet
      * both WiFi radios
      * USB 3.0
      * buttons (reset button)
      * ethernet switch and USB diag LEDs
      * UART
      * GPIOs
      * sysupgrade
      
      Tested and not working
      * failsafe
      
      Signed-off-by: default avatarYounJae Rho <luxflow@live.com>
      
      SVN-Revision: 47619
      8c1f5141
    • John Crispin's avatar
      ramips: add support for Youku YK1 · e9baf826
      John Crispin authored
      
      Changes since V1:
      I resend this patch for current trunk.The former V1 patch is for CC branch.
      
      Signed-off-by: default avatarShonn Lu <countrysideboy@qq.com>
      
      SVN-Revision: 47617
      e9baf826
  18. Nov 03, 2015
  19. Nov 02, 2015
  20. Oct 19, 2015
  21. Oct 05, 2015
    • John Crispin's avatar
      ramips: Add base-files for HiWiFi HC5x61 models · c10bdf11
      John Crispin authored
      HiWiFi HC5661/5761/5861 models are manufactured by http://www.hiwifi.com
      
      . These models have similar hardware specs(MT7620A + 128M DDR2 + 16M flash). This patch adds support for them.
      
      The original author is Justin Liu (rssnsj@gmail.com). I ported the patch to trunk and submitted it here with his approval.
      
      v3 fix
         1: Fixed model order
         2: Remove manufacturer name from model name
         3: Use a hacky but prettier way to get mac address.
      
      Signed-off-by: default avatarXiaoning Kang <kangxn@163.com>
      
      SVN-Revision: 47111
      c10bdf11
  22. Sep 14, 2015
  23. Aug 17, 2015
  24. Jul 24, 2015
    • John Crispin's avatar
      ramips: add support for STORYLiNK SAP-G3200U3 · dcae3723
      John Crispin authored
      STORYLiNK SAP-G3200U3 is an AC1200 router based on MT7621AT+MT7602EN+MT7612EN.
      It has 128MB DDR3, 8MB NOR FLASH, 5-port Gbps switch and 1x USB 3.0.
      
      The following patch adds support for this device.
      
      Tested and working:
      * ethernet
      * both WiFi radios
      * USB 3.0
      * buttons
      * ethernet switch and USB diag LEDs
      * UART
      * GPIOs
      
      Tested and not working:
      * LEDs for WiFi radios (connected with WiFi chips, not supported in mt76?)
      * failsafe mode (known problem, needs workaround like other MTK based devices)
      
      More information in Wiki: http://wiki.openwrt.org/toh/storylink/sap-g3200u3
      
      
      
      Signed-off-by: default avatarPiotr Dymacz <pepe2k@gmail.com>
      
      SVN-Revision: 46454
      dcae3723
Loading