mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
5264296ce4
Instead of erasing the entire NAND partition holding the kernel during
every system upgrade and then flashing a Yaffs file system image
prepared using kernel2minor (not accounting for bad blocks in the
process), use the Yafut utility to replace the kernel executable on
MikroTik NAND devices, preserving the existing Yaffs file system
(including bad block information) on the partition holding the kernel.
Add Yafut to DEFAULT_PACKAGES for the ath79/mikrotik target, so that the
tool is included in the initramfs images created when building for
multiple profiles. However, exclude Yafut from the images built for
MikroTik devices with NOR flash as the tool is currently only meant to
be used on devices with NAND flash.
As this addresses the concerns for MikroTik NAND devices discussed in
commit 9d96b6fb72
("ath79/mikrotik: disable building NAND images"),
re-enable building images for these devices.
Signed-off-by: Michał Kępień <openwrt@kempniu.pl>
12 lines
309 B
Makefile
12 lines
309 B
Makefile
BOARDNAME := MikroTik devices
|
|
FEATURES += minor nand
|
|
KERNELNAME := vmlinux vmlinuz
|
|
IMAGES_DIR := ../../..
|
|
|
|
DEFAULT_PACKAGES += wpad-basic-mbedtls yafut
|
|
|
|
define Target/Description
|
|
Build firmware images for MikroTik devices based on Qualcomm Atheros
|
|
MIPS SoCs (AR71xx, AR72xx, AR91xx, AR93xx, QCA95xx).
|
|
endef
|