diff options
author | Maxim Anisimov <maxim.anisimov.ua@gmail.com> | 2018-04-08 17:04:11 +0300 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2018-07-04 01:20:02 +0200 |
commit | 7d07bc96b7e686244ed096d3bbfad297a2ec1ce9 (patch) | |
tree | bba04b44d0d239f3f6b82dbff3120e7e13008832 /target/linux/ramips/image/mt76x8.mk | |
parent | 9e2c28472c3f3a76e16afb582fd8807d08c6dda6 (diff) | |
download | upstream-7d07bc96b7e686244ed096d3bbfad297a2ec1ce9.tar.gz upstream-7d07bc96b7e686244ed096d3bbfad297a2ec1ce9.tar.bz2 upstream-7d07bc96b7e686244ed096d3bbfad297a2ec1ce9.zip |
ramips: add support for ZyXEL Keenetic Extra II
Specification:
- System-On-Chip: MT7628N/N
- CPU/Speed: 580 MHz
- Flash-Chip: Winbond w25q256
- Flash size: 32768 KiB
- RAM: 128 MiB
- 5x 10/100 Mbps Ethernet
- 4x external, non-detachable antennas
- UART (J1) header on PCB (57600 8n1)
- Wireless No1 (2T2R): SoC-integrated: MT7628N 2.4GHz 802.11bgn
- Wireless No2 (2T2R): On-board chip: MT7612EN 5GHz 802.11ac
- USB: Yes 1 x 2.0
- 4x LED, 3x button
The device supports dual boot mode. So we use only first half of flash.
Flash instruction:
The only way to flash OpenWrt image is to use
tftp recovery mode in U-Boot:
1. Configure PC with static IP 192.168.1.2/24 and tftp server.
2. Rename "openwrt-ramips-mt76x8-zyxel_keenetic-extra-ii-squashfs-factory.bin"
to "kextra2_recovery.bin" and place it in tftp server directory.
3. Connect PC with one of LAN ports, press the reset button, power up
the router and keep button pressed until power led start blinking.
4. Router will download file from server, write it to flash and reboot.
Signed-off-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com>
Diffstat (limited to 'target/linux/ramips/image/mt76x8.mk')
-rw-r--r-- | target/linux/ramips/image/mt76x8.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/ramips/image/mt76x8.mk b/target/linux/ramips/image/mt76x8.mk index 443e1c79ab..6c75002a84 100644 --- a/target/linux/ramips/image/mt76x8.mk +++ b/target/linux/ramips/image/mt76x8.mk @@ -313,3 +313,15 @@ define Device/zbtlink_zbt-we1226 DEVICE_TITLE := ZBTlink ZBT-WE1226 endef TARGET_DEVICES += zbtlink_zbt-we1226 + +define Device/zyxel_keenetic-extra-ii + DTS := ki_rb + IMAGE_SIZE := 14912k + BLOCKSIZE := 64k + DEVICE_TITLE := ZyXEL Keenetic Extra II + DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport + IMAGES += factory.bin + IMAGE/factory.bin := $$(IMAGE/sysupgrade.bin) | pad-to $$$$(BLOCKSIZE) | \ + check-size $$$$(IMAGE_SIZE) | zyimage -d 6162 -v "ZyXEL Keenetic Extra II" +endef +TARGET_DEVICES += zyxel_keenetic-extra-ii |