mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-04-16 03:21:04 +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>
20 lines
761 B
Plaintext
20 lines
761 B
Plaintext
config TOOLS_MKFWUMDATA
|
|
bool "Build mkfwumdata command"
|
|
default y if FWU_MULTI_BANK_UPDATE
|
|
help
|
|
This command allows users to create a raw image of the FWU
|
|
metadata for initial installation of the FWU multi bank
|
|
update on the board. The installation method depends on
|
|
the platform.
|
|
|
|
config TOOLS_FWUMDATA
|
|
bool "Build fwumdata command"
|
|
default y if FWU_MULTI_BANK_UPDATE
|
|
help
|
|
This command 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.
|