Skip to content
Snippets Groups Projects
Unverified Commit 55d654ff authored by Steffen Förster's avatar Steffen Förster Committed by GitHub
Browse files

mediatek-filogic: add support for OpenWRT One (#3446)

Specification:
 - MT7981 CPU using 2.4GHz and 5GHz WiFi (both AX)
 - 1GB RAM
 - 16MB NOR
 - 128MB NAND
 - 3 LEDs (red, green, blue, white)
 - 2 buttons (reset, user defined)
 - 1 2.5Gbit WAN port (Airoha EN8811h)
 - 1 1Gbit LAN ports
 - 1 single lane M.2 SSD slot
 - 1 mikroBus socket
 - externel HW WDT (25s refresh time)
 - i2c RTC (with battery backup)

Serial Interface
 - UBS-C CDC-ACM
 - 3 Pins GND, RX, TX
 - Settings: 115200, 8N1
parent 1feed04d
Branches
Tags
No related merge requests found
...@@ -334,6 +334,10 @@ mediatek-filogic ...@@ -334,6 +334,10 @@ mediatek-filogic
- WAX220 - WAX220
* OpenWrt
- One
* Ubiquiti * Ubiquiti
- UniFi 6 Plus - UniFi 6 Plus
......
config('TARGET_ROOTFS_INITRAMFS', true)
config('TARGET_INITRAMFS_COMPRESSION_LZMA', true)
-- ASUS -- ASUS
device('asus-tuf-ax4200', 'asus_tuf-ax4200', { device('asus-tuf-ax4200', 'asus_tuf-ax4200', {
...@@ -50,6 +53,13 @@ device('netgear-wax220', 'netgear_wax220', { ...@@ -50,6 +53,13 @@ device('netgear-wax220', 'netgear_wax220', {
factory_ext = '.img', factory_ext = '.img',
}) })
-- OpenWRT
device('openwrt-one', 'openwrt_one',{
factory = '-factory',
factory_ext = '.ubi',
sysupgrade_ext = '.itb',
})
-- Ubiquiti -- Ubiquiti
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment