82626cc145
This patch adds support for the MikroTik RouterBOARD 921GS-5HPacD r2 (mANTBox 15s), an outdoor sector antenna with a built-in 802.11ac wireless router. Additionally, it adds a new profile for devices with >= 128 MB NAND flash and 802.11ac to the ar71xx/mikrotik subtarget. See https://mikrotik.com/product/RB921GS-5HPacD-15S for more info. Specifications: - SoC: Qualcomm Atheros QCA9558 (720 MHz) - RAM: 128 MB - Storage: 128 MB NAND - Wireless: external QCA9822 802.11a/ac 2x2:2 - Ethernet: 1x 1000/100/10 Mbps, integrated, via AR8031 PHY, passive PoE in - SFP: 1x host Working: - Board/system detection - NAND storage detection - Wireless - Ethernet - 1x user LED - Reset button - Sysupgrade Untested: - SFP cage (probably not working) Installation: - Boot initramfs image via TFTP and then flash sysupgrade image Signed-off-by: Roger Pueyo Centelles <roger.pueyo@guifi.net>
54 lines
1.9 KiB
Makefile
54 lines
1.9 KiB
Makefile
define Device/mikrotik
|
|
PROFILES := Default
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-usb-ledtrig-usbport
|
|
BOARD_NAME := routerboard
|
|
KERNEL_INITRAMFS :=
|
|
KERNEL_NAME := loader-generic.elf
|
|
KERNEL := kernel-bin | kernel2minor -s 2048 -e -c
|
|
FILESYSTEMS := squashfs
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar
|
|
endef
|
|
|
|
define Device/nand-64m
|
|
$(Device/mikrotik)
|
|
DEVICE_TITLE := MikroTik RouterBoard (64 MB NAND)
|
|
KERNEL := kernel-bin | kernel2minor -s 512 -e -c
|
|
endef
|
|
TARGET_DEVICES += nand-64m
|
|
|
|
define Device/nand-large
|
|
$(Device/mikrotik)
|
|
DEVICE_TITLE := MikroTik RouterBoard (>= 128 MB NAND)
|
|
KERNEL := kernel-bin | kernel2minor -s 2048 -e -c
|
|
endef
|
|
TARGET_DEVICES += nand-large
|
|
|
|
define Device/nand-large-ac
|
|
$(Device/mikrotik)
|
|
DEVICE_TITLE := MikroTik RouterBoard (>= 128 MB NAND, 802.11ac)
|
|
DEVICE_PACKAGES += kmod-ath10k ath10k-firmware-qca988x
|
|
KERNEL := kernel-bin | kernel2minor -s 2048 -e -c
|
|
SUPPORTED_DEVICES := rb-921gs-5hpacd-r2
|
|
endef
|
|
TARGET_DEVICES += nand-large-ac
|
|
|
|
define Device/rb-nor-flash-16M
|
|
DEVICE_TITLE := MikroTik RouterBoard (16 MB SPI NOR)
|
|
DEVICE_PACKAGES := rbcfg rssileds -nand-utils kmod-ledtrig-gpio
|
|
IMAGE_SIZE := 16000k
|
|
LOADER_TYPE := elf
|
|
KERNEL_INSTALL := 1
|
|
KERNEL := kernel-bin | lzma | loader-kernel
|
|
SUPPORTED_DEVICES := rb-750-r2 rb-750up-r2 rb-750p-pbr2 rb-941-2nd rb-951ui-2nd rb-952ui-5ac2nd rb-962uigs-5hact2hnt rb-lhg-5nd rb-map-2nd rb-mapl-2nd rb-wap-2nd
|
|
IMAGE/sysupgrade.bin := append-kernel | kernel2minor -s 1024 -e | pad-to $$$$(BLOCKSIZE) | \
|
|
append-rootfs | pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE)
|
|
endef
|
|
TARGET_DEVICES += rb-nor-flash-16M
|
|
|
|
define Device/rb-nor-flash-16M-ac
|
|
$(Device/rb-nor-flash-16M)
|
|
DEVICE_TITLE := MikroTik RouterBoard (16 MB SPI NOR, 802.11ac)
|
|
DEVICE_PACKAGES += kmod-ath10k ath10k-firmware-qca988x ath10k-firmware-qca9887
|
|
endef
|
|
TARGET_DEVICES += rb-nor-flash-16M-ac
|