diff options
author | 张鹏 <sd20@qxwlan.com> | 2018-07-17 18:14:25 +0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-07-30 10:43:36 +0200 |
commit | 53a45020135b504cb4bee0fa8d98c8eaf6391066 (patch) | |
tree | 2cbde3c8b5b912e572871a9ca5b28a0e812e0640 /target/linux/ar71xx/image | |
parent | ac03d51a3f4daa2f6a2a83f041dcd71674a9f724 (diff) | |
download | upstream-53a45020135b504cb4bee0fa8d98c8eaf6391066.tar.gz upstream-53a45020135b504cb4bee0fa8d98c8eaf6391066.tar.bz2 upstream-53a45020135b504cb4bee0fa8d98c8eaf6391066.zip |
ar71xx:add support for E750G v8
Qxwlan E750G v8 is based on Qualcomm QCA9344.
Specification:
- 560/450/225 MHz (CPU/DDR/AHB)
- 128 MB of RAM (DDR2)
- 8/16 MB of FLASH (SPI NOR)
- 2T2R 2.4G GHz (AR9344)
- 2x 10/100 Mbps Ethernet (PoE support)
- 2x 10/100/1000 Mbps Ethernet
- 7x LED (6 driven by GPIO)
- 1x button (reset)
- 1x DC jack for main power input (9-48 V)
- UART (J23) and LEDs (J2) headers on PCB
Flash instruction (using U-Boot CLI and tftp server):
- Configure PC with static IP 192.168.1.10 and tftp server.
- Rename "sysupgrade" filename to "firmware.bin" and place it in tftp
server directory.
- Connect PC with one of RJ45 ports, power up the board and press
"enter" key to access U-Boot CLI.
- Use the following command to update the device to OpenWrt: "run lfw".
Flash instruction (using U-Boot web-based recovery):
- Configure PC with static IP 192.168.1.xxx(2-254)/24.
- Connect PC with one of RJ45 ports, press the reset button, power up
the board and keep button pressed for around 6-7 seconds, until LEDs
start flashing.
- Open your browser and enter 192.168.1.1, select "sysupgrade" image
and click the upgrade button.
Signed-off-by: 张鹏 <sd20@qxwlan.com>
Diffstat (limited to 'target/linux/ar71xx/image')
-rw-r--r-- | target/linux/ar71xx/image/generic.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/ar71xx/image/generic.mk b/target/linux/ar71xx/image/generic.mk index d9da3be782..2a9c42f999 100644 --- a/target/linux/ar71xx/image/generic.mk +++ b/target/linux/ar71xx/image/generic.mk @@ -403,6 +403,25 @@ define Device/e750a-v4-8M endef TARGET_DEVICES += e750a-v4-8M +define Device/e750g-v8-16M + DEVICE_TITLE := Qxwlan E750G v8 (16MB flash) + DEVICE_PACKAGES := kmod-usb-core kmod-usb2 -swconfig + BOARDNAME := E750G-V8 + SUPPORTED_DEVICES := e750g-v8 + IMAGE_SIZE := 15936k + MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env),64k(pri-data)ro,64k(art),-(firmware) + IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(BLOCKSIZE) |\ + append-rootfs | pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE) +endef +TARGET_DEVICES += e750g-v8-16M + +define Device/e750g-v8-8M + $(Device/e750g-v8-16M) + DEVICE_TITLE := Qxwlan E750G v8 (8MB flash) + IMAGE_SIZE := 7744k +endef +TARGET_DEVICES += e750g-v8-8M + define Device/ew-balin DEVICE_TITLE := Embedded Wireless Balin Platform DEVICE_PACKAGES := kmod-usb-core kmod-usb-chipidea |