mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
b7a8a54542
This patch adds support for the MikroTik RouterBOARD RB493G, ported from the ar71xx target. See https://routerboard.com/RB493G for details Specification: - SoC Qualcomm Atheros AR7161 - RAM: 256 MiB - Storage: 128MiB NAND - Ethernet: 9x 1000/100/10 Mbps - USB 1x 2.0 / 1.0 type A - PCIe: 3x Mini slot - MicroSD slot Working: - Board/system detection - Ethernet - SPI - NAND - LEDs - USB - Sysupgrade Enabled (but untested due to lack of hardware): - PCIe - ath79_pci_irq struct has the slot/pin/IRQ mappings if needed Installation methods: - tftp boot initramfs image, scp then flash via "sysupgrade -n" - nand boot existing OpenWrt, scp then flash via "sysupgrade -n" Notes: - initramfs image will not work if uncompressed image size over ~8.5Mb - The "rb4xx" drivers have been enabled Signed-off-by: Christopher Hill <ch6574@gmail.com>
38 lines
1.3 KiB
Makefile
38 lines
1.3 KiB
Makefile
include ./common-mikrotik.mk
|
|
|
|
define Device/mikrotik_routerboard-493g
|
|
$(Device/mikrotik)
|
|
SOC := ar7161
|
|
DEVICE_MODEL := RouterBOARD 493G
|
|
IMAGE/sysupgrade.bin = append-kernel | kernel2minor -s 2048 -e -c | \
|
|
sysupgrade-tar kernel=$$$$@ | append-metadata
|
|
DEVICE_PACKAGES += kmod-usb-ohci kmod-usb2 nand-utils
|
|
SUPPORTED_DEVICES += rb-493g
|
|
endef
|
|
TARGET_DEVICES += mikrotik_routerboard-493g
|
|
|
|
define Device/mikrotik_routerboard-922uags-5hpacd
|
|
$(Device/mikrotik)
|
|
SOC := qca9558
|
|
DEVICE_MODEL := RouterBOARD 922UAGS-5HPacD
|
|
IMAGE/sysupgrade.bin = append-kernel | kernel2minor -s 2048 -e -c | \
|
|
sysupgrade-tar kernel=$$$$@ | append-metadata
|
|
DEVICE_PACKAGES += kmod-ath10k-ct ath10k-firmware-qca988x-ct \
|
|
kmod-usb2 nand-utils
|
|
SUPPORTED_DEVICES += rb-922uags-5hpacd
|
|
endef
|
|
TARGET_DEVICES += mikrotik_routerboard-922uags-5hpacd
|
|
|
|
define Device/mikrotik_routerboard-wap-g-5hact2hnd
|
|
$(Device/mikrotik)
|
|
SOC := qca9556
|
|
DEVICE_MODEL := RouterBOARD wAP G-5HacT2HnD (wAP AC)
|
|
IMAGE_SIZE := 16256k
|
|
IMAGE/sysupgrade.bin := append-kernel | kernel2minor -s 1024 -e | \
|
|
pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | \
|
|
append-metadata | check-size
|
|
DEVICE_PACKAGES += kmod-ath10k-ct-smallbuffers ath10k-firmware-qca988x-ct
|
|
SUPPORTED_DEVICES += rb-wapg-5hact2hnd
|
|
endef
|
|
TARGET_DEVICES += mikrotik_routerboard-wap-g-5hact2hnd
|