doc: release-notes: Add mcumgr file status, file hash/checksum details

This adds release notes for the new file status and file hash/checksum
mcumgr fs commands.

Signed-off-by: Jamie McCrae <jamie.mccrae@lairdconnect.com>
This commit is contained in:
Jamie McCrae 2022-03-21 17:17:53 +00:00 committed by Carles Cufí
commit c19e8c9a23

View file

@ -192,6 +192,21 @@ Libraries / Subsystems
* Added support for MCUMGR Parameters command, which can be used to obtain * Added support for MCUMGR Parameters command, which can be used to obtain
MCUMGR parameters; :kconfig:option:`CONFIG_OS_MGMT_MCUMGR_PARAMS` enables MCUMGR parameters; :kconfig:option:`CONFIG_OS_MGMT_MCUMGR_PARAMS` enables
the command. the command.
* Added mcumgr fs handler for getting file status which returns file size;
controlled with :kconfig:option:`CONFIG_FS_MGMT_FILE_STATUS`
* Added mcumgr fs handler for getting file hash/checksum, with support for
IEEE CRC32 and SHA256, the following Kconfig options have been added to
control the addition:
* :kconfig:option:`CONFIG_FS_MGMT_CHECKSUM_HASH` to enable the command;
* :kconfig:option:`CONFIG_FS_MGMT_CHECKSUM_HASH_CHUNK_SIZE` that sets size
of buffer (stack memory) used for calculation:
* :kconfig:option:`CONFIG_FS_MGMT_CHECKSUM_IEEE_CRC32` enables support for
IEEE CRC32.
* :kconfig:option:`CONFIG_FS_MGMT_HASH_SHA256` enables SHA256 hash support.
* When hash/checksum query to mcumgr does not specify a type, then the order
of preference (most priority) is CRC32 followed by SHA256.
HALs HALs
**** ****