mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
e2954a1e1b
Device specification:
- MT7629 with 16MB NOR flash W25Q128 and 128 MB DDR3 RAM.
- MT7761N and MT7762N wireless chips (currenlty no driver in OpenWrt available)
- WiFi is NOT working on this device
- Dual core but second CPU doesn't seem to work (Error message during boot: "CPU1: failed to come online")
There are two similar merge requests for similar devices with the same issues:
- https://github.com/openwrt/openwrt/pull/12286
- https://github.com/openwrt/openwrt/pull/5084
UART interface is next to the reset button, pinout:
- 1: TX (the pin with the arrow marker)
- 2: RX
- 3: GND
- 4: VCC
UART settings: 115200,8n1, 3.3V
U-Boot menu can be entered by pressing Ctrl+B during startup.
Booting initramfs:
- Set your computers IP adress to 192.168.1.110
- Run a TFTP server providing the initramfs image
- Power on the AP, press Ctrl+B to get to the U-Boot menu
- Select "1. System Load Linux to SDRAM via TFTP"
- Update kernel file name, input server IP and input device IP (if they deviate from the defaults)
- After booting, create a backup of all partitions, especially for kernel and root_fs. They are required for reverting back to stock firmware
- The sysupgrade image can be flashed now
MAC adresses:
- LAN and 2.4GHz use the same MAC (the one printed on the device)
- 5GHz WiFi MAC is LAN MAC + 1
GPIOs:
- GPIO 21 is the reset pin (low active)
- GPIO 55 is for the green LED (active high)
- GPIO 56 is for the yellow/amber LED (active high)
Signed-off-by: Roland Reinl <reinlroland+github@gmail.com>
(cherry picked from commit 44cd32d764
)
60 lines
1.9 KiB
Makefile
60 lines
1.9 KiB
Makefile
define Device/mediatek_mt7629-rfb
|
|
DEVICE_VENDOR := MediaTek
|
|
DEVICE_MODEL := MT7629 rfb AP
|
|
DEVICE_DTS := mt7629-rfb
|
|
DEVICE_PACKAGES := swconfig
|
|
endef
|
|
TARGET_DEVICES += mediatek_mt7629-rfb
|
|
|
|
define Device/iptime_a6004mx
|
|
DEVICE_VENDOR := ipTIME
|
|
DEVICE_MODEL := A6004MX
|
|
DEVICE_DTS := mt7629-iptime-a6004mx
|
|
DEVICE_DTS_DIR := ../dts
|
|
DEVICE_PACKAGES := kmod-usb3 uboot-envtools
|
|
UBINIZE_OPTS := -E 5
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
KERNEL := $$(KERNEL) | pad-offset 128k 2048 | iptime-crc32 a6004mx
|
|
KERNEL_INITRAMFS := $$(KERNEL_INITRAMFS) | pad-offset 128k 2048 | iptime-crc32 a6004mx
|
|
IMAGES += recovery.bin
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
|
IMAGE/recovery.bin := append-kernel | pad-to 128k | append-ubi | append-metadata
|
|
endef
|
|
TARGET_DEVICES += iptime_a6004mx
|
|
|
|
define Device/netgear_ex6250-v2
|
|
DEVICE_VENDOR := NETGEAR
|
|
DEVICE_MODEL := EX6250
|
|
DEVICE_VARIANT := v2
|
|
DEVICE_ALT0_VENDOR := NETGEAR
|
|
DEVICE_ALT0_MODEL := EX6400
|
|
DEVICE_ALT0_VARIANT := v3
|
|
DEVICE_ALT1_VENDOR := NETGEAR
|
|
DEVICE_ALT1_MODEL := EX6410
|
|
DEVICE_ALT1_VARIANT := v2
|
|
DEVICE_ALT2_VENDOR := NETGEAR
|
|
DEVICE_ALT2_MODEL := EX6470
|
|
DEVICE_DTS := mt7629-netgear-ex6250-v2
|
|
DEVICE_DTS_DIR := ../dts
|
|
DEVICE_PACKAGES := uboot-envtools
|
|
NETGEAR_ENC_MODEL := EX6250v2
|
|
NETGEAR_ENC_REGION := US
|
|
NETGEAR_ENC_HW_ID_LIST := 1010000003630000_NETGEAR;1010000003540000_NETGEAR
|
|
NETGEAR_ENC_MODEL_LIST := EX6250v2;EX6400v3;EX6470;EX6410v2
|
|
IMAGE_SIZE := 13120k
|
|
IMAGES += factory.img
|
|
IMAGE/factory.img := append-kernel | pad-to 128k | append-rootfs | \
|
|
pad-rootfs | check-size | netgear-encrypted-factory
|
|
endef
|
|
TARGET_DEVICES += netgear_ex6250-v2
|
|
|
|
define Device/tplink_eap225-v5
|
|
DEVICE_VENDOR := TP-Link
|
|
DEVICE_MODEL := EAP225
|
|
DEVICE_VARIANT := v5
|
|
DEVICE_DTS := mt7629-tplink_eap225-v5
|
|
DEVICE_DTS_DIR := ../dts
|
|
endef
|
|
TARGET_DEVICES += tplink_eap225-v5
|