diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2019-06-17 01:23:32 +0900 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-07-18 00:06:55 +0200 |
commit | d616b2c906690d2e471144ca12b0a9ed28de21c2 (patch) | |
tree | 71f3337e29fb75681d5b0b72a2d1cc0605687575 /target | |
parent | 974d6958a7c6332438ab4cda98e72156c8d944ed (diff) | |
download | upstream-d616b2c906690d2e471144ca12b0a9ed28de21c2.tar.gz upstream-d616b2c906690d2e471144ca12b0a9ed28de21c2.tar.bz2 upstream-d616b2c906690d2e471144ca12b0a9ed28de21c2.zip |
ath79: modify device name of I-O DATA WN-AC1600DGR2
The hardware of I-O DATA WN-AC1600DGR3 has completely compatibility
with WN-AC1600DGR2, so modify the device name of WN-AC1600DGR2 to show
the images for DGR2 also support DGR3.
Specification of WN-AC1600DGR3:
- SoC : Qualcomm Atheros QCA9557
- RAM : DDR2 128 MiB
- Flash : SPI-NOR 16 MiB
- WLAN : 2.4/5 GHz
- 2.4 GHz : QCA9557 (SoC), 2T2R
- 5 Ghz : QCA9880, 3T3R
- Ethernet : 5x 10/100/1000 Mbps
- Switch : QCA8337N
- LEDs/Input : 6x/6x (4x buttons, 1x slide-switch)
- UART : through-hole on PCB
- J1: Vcc, GND, TX, RX from ethernet port side
- 115200n8
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ath79/dts/qca9557_iodata_wn-ac1600dgr2.dts | 4 | ||||
-rw-r--r-- | target/linux/ath79/image/generic.mk | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/target/linux/ath79/dts/qca9557_iodata_wn-ac1600dgr2.dts b/target/linux/ath79/dts/qca9557_iodata_wn-ac1600dgr2.dts index 37ae8fe01f..c8cde8b813 100644 --- a/target/linux/ath79/dts/qca9557_iodata_wn-ac1600dgr2.dts +++ b/target/linux/ath79/dts/qca9557_iodata_wn-ac1600dgr2.dts @@ -7,8 +7,8 @@ #include "qca9557_iodata_wn-ac-dgr.dtsi" / { - compatible = "iodata,wn-ac1600dgr2", "qca,qca9557"; - model = "I-O DATA WN-AC1600DGR2"; + compatible = "iodata,wn-ac1600dgr2", "iodata,wn-ac1600dgr3", "qca,qca9557"; + model = "I-O DATA WN-AC1600DGR2/DGR3"; }; &leds { diff --git a/target/linux/ath79/image/generic.mk b/target/linux/ath79/image/generic.mk index 51adedd6ce..64c92c89dc 100644 --- a/target/linux/ath79/image/generic.mk +++ b/target/linux/ath79/image/generic.mk @@ -520,10 +520,11 @@ TARGET_DEVICES += iodata_wn-ac1600dgr define Device/iodata_wn-ac1600dgr2 ATH_SOC := qca9557 DEVICE_VENDOR := I-O DATA - DEVICE_MODEL := WN-AC1600DGR2 + DEVICE_MODEL := WN-AC1600DGR2/DGR3 IMAGE_SIZE := 14656k - IMAGES += factory.bin - IMAGE/factory.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | \ + IMAGES += dgr2-dgr3-factory.bin + IMAGE/dgr2-dgr3-factory.bin := \ + append-kernel | pad-to $$$$(BLOCKSIZE) | \ append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE) | \ senao-header -r 0x30a -p 0x60 -t 2 -v 200 DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-ath10k-ct ath10k-firmware-qca988x-ct |