mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
d1f1e5269e
This commit adds support for the MikroTik SXTsq 5 ac (RBSXTsqG-5acD), an outdoor 802.11ac wireless CPE with one 10/100/1000 Mbps Ethernet port. Specifications: - SoC: Qualcomm Atheros IPQ4018 - RAM: 256 MB - Storage: 16 MB NOR - Wireless: IPQ4018 (SoC) 802.11a/n/ac 2x2:2, 16 dBi antennae - Ethernet: IPQ4018 (SoC) 1x 10/100/1000 port, 10-28 Vdc PoE in - 1x Ethernet LED (green) - 7x user-controllable LEDs · 1x power (blue) · 1x user (green) · 5x rssi (green) Note: Serial UART is probably available on the board, but it has not been tested. Flashing: Boot via TFTP the initramfs image. Then, upload a sysupgrade image via SSH and flash it normally. More info at the "Common procedures for MikroTik products" page https://openwrt.org/toh/mikrotik/common. Signed-off-by: Roger Pueyo Centelles <roger.pueyo@guifi.net>
29 lines
816 B
Makefile
29 lines
816 B
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 | \
|
|
append-metadata | check-size
|
|
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_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
|