mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
8d62304785
LHGG-60ad is IPQ4019 + wil6210 based. Specification: - Qualcomm IPQ4019 (717 MHz) - 256 MB of RAM (DDR3L) - 16 MB (SPI NOR) of flash - 1x Gbit ethernet, 802.3af/at POE IN connected through AR8035. - WLAN: wil6210 802.11ad PCI card - No USB or SD card ports - UART disabled - 8x LEDs Biggest news is the wil6210 PCI card. Integration for its configuration and detection has already been taken care of when adding support for TP-Link Talon AD7200. However, signal quality is much lower than with stock firmware, so probably additional board-specific data has to be provided to the driver and is still missing at the moment. Signed-off-by: Robert Marko <robimarko@gmail.com> Signed-off-by: Alexander Couzens <lynxis@fe80.eu> Signed-off-by: Daniel Golle <daniel@makrotopia.org> [Fix Ethernet Interface] Signed-off-by: Nick Hainke <vincent@systemli.org>
58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
define Device/mikrotik_nor
|
|
DEVICE_VENDOR := MikroTik
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := 16128k
|
|
KERNEL_NAME := vmlinux
|
|
KERNEL := kernel-bin | append-dtb-elf
|
|
IMAGES = sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := append-kernel | kernel2minor -s 1024 | \
|
|
pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | \
|
|
check-size | append-metadata
|
|
endef
|
|
|
|
define Device/mikrotik_nand
|
|
DEVICE_VENDOR := MikroTik
|
|
KERNEL_NAME := vmlinux
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb-elf
|
|
KERNEL := kernel-bin | append-dtb-elf | package-kernel-ubifs | \
|
|
ubinize-kernel
|
|
IMAGES := nand-sysupgrade.bin
|
|
IMAGE/nand-sysupgrade.bin := sysupgrade-tar | append-metadata
|
|
endef
|
|
|
|
define Device/mikrotik_hap-ac2
|
|
$(call Device/mikrotik_nor)
|
|
DEVICE_MODEL := hAP ac2
|
|
SOC := qcom-ipq4018
|
|
DEVICE_PACKAGES := ipq-wifi-mikrotik_hap-ac2 -kmod-ath10k-ct \
|
|
kmod-ath10k-ct-smallbuffers
|
|
endef
|
|
TARGET_DEVICES += mikrotik_hap-ac2
|
|
|
|
define Device/mikrotik_hap-ac3
|
|
$(call Device/mikrotik_nand)
|
|
DEVICE_MODEL := hAP ac3
|
|
SOC := qcom-ipq4019
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
KERNEL_UBIFS_OPTS = -m $$(PAGESIZE) -e 124KiB -c $$(PAGESIZE) -x none
|
|
DEVICE_PACKAGES := kmod-ledtrig-gpio ipq-wifi-mikrotik_hap-ac3
|
|
endef
|
|
TARGET_DEVICES += mikrotik_hap-ac3
|
|
|
|
define Device/mikrotik_lhgg-60ad
|
|
$(call Device/mikrotik_nor)
|
|
DEVICE_MODEL := Wireless Wire Dish LHGG-60ad
|
|
DEVICE_DTS := qcom-ipq4019-lhgg-60ad
|
|
DEVICE_PACKAGES += -kmod-ath10k-ct -ath10k-firmware-qca4019-ct kmod-wil6210
|
|
endef
|
|
TARGET_DEVICES += mikrotik_lhgg-60ad
|
|
|
|
define Device/mikrotik_sxtsq-5-ac
|
|
$(call Device/mikrotik_nor)
|
|
DEVICE_MODEL := SXTsq 5 ac (RBSXTsqG-5acD)
|
|
SOC := qcom-ipq4018
|
|
DEVICE_PACKAGES := ipq-wifi-mikrotik_sxtsq-5-ac rssileds
|
|
endef
|
|
TARGET_DEVICES += mikrotik_sxtsq-5-ac
|