mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-04 20:26:13 +02:00
Add a new fwumdata tool to allows users to read, display, and modify FWU (Firmware Update) metadata from Linux userspace. It provides functionality similar to fw_printenv/fw_setenv but for FWU metadata. Users can view metadata, change active/previous bank indices, modify bank states, and set image acceptance flags. Configuration is done via fwumdata.config file. Signed-off-by: Kory Maincent <kory.maincent@bootlin.com> Tested-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
11 lines
378 B
Makefile
11 lines
378 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2025, Kory Maincent <kory.maincent@bootlin.com>
|
|
|
|
mkfwumdata-objs := fwumdata_src/mkfwumdata.o generated/lib/crc32.o
|
|
HOSTLDLIBS_mkfwumdata += -luuid
|
|
hostprogs-always-$(CONFIG_TOOLS_MKFWUMDATA) += mkfwumdata
|
|
|
|
fwumdata-objs := fwumdata_src/fwumdata.o generated/lib/crc32.o
|
|
hostprogs-always-$(CONFIG_TOOLS_FWUMDATA) += fwumdata
|