mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 02:29:01 +00:00
3d8be08939
So far, specifying "BOARD_NAME := routerboard" is required by the upgrade code of Mikrotik NAND devices, as "sysupgrade-routerboard" is hardcoded in platform_do_upgrade_mikrotik_nand(). This patch replaces the latter with a grep for the name like it is already done in nand_upgrade_tar() in /lib/upgrade/nand.sh. By that, BOARD_NAME is obsolete now for this device. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
27 lines
990 B
Makefile
27 lines
990 B
Makefile
include ./common-mikrotik.mk
|
|
|
|
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 $$$$(IMAGE_SIZE)
|
|
DEVICE_PACKAGES += kmod-ath10k-ct-smallbuffers ath10k-firmware-qca988x-ct
|
|
SUPPORTED_DEVICES += rb-wapg-5hact2hnd
|
|
endef
|
|
TARGET_DEVICES += mikrotik_routerboard-wap-g-5hact2hnd
|