Adam Múdry d42bde0378 feat(nvs): NVS tool add key consistency check 2 лет назад
..
README.rst 61c5fc21e1 docs: fix nvs-related docs build issue 3 лет назад
README_CN.rst 7f0aa7b534 docs: updated path to nvs_tool.py in chinese doc. 3 лет назад
nvs_check.py d42bde0378 feat(nvs): NVS tool add key consistency check 2 лет назад
nvs_logger.py c276e2ca05 refactor: NVS tool move integrity check from logger to another file 2 лет назад
nvs_parser.py 87bdcc89d0 nvs: NVS tool refinement 3 лет назад
nvs_tool.py d42bde0378 feat(nvs): NVS tool add key consistency check 2 лет назад

README.rst

NVS Partition Parser Utility
============================

:link_to_translation:`zh_CN:[中文]`

Introduction
------------

The utility :component_file:`nvs_flash/nvs_partition_tool/nvs_tool.py` loads and parses an NVS storage partition for easier debugging and data extraction. The utility also features integrity check which scans the partition for potential errors. Data blobs are encoded in `base64` format.

Encrypted Partitions
--------------------

This utility does not support decryption. To decrypt the NVS partition, please use the :doc:`NVS Partition Generator Utility ` which does support NVS partition encryption and decryption.

Usage
-----

There are two output format styles available with the `-f` or `--format` option:
- `json` - All of the output is printed as a JSON.
- `text` - The output is printed as a human-readable text with different selectable output styles mentioned below.

For the `text` output format, the utility provides six different output styles with the `-d` or `--dump` option:
- `all` (default) - Prints all entries with metadata.
- `written` - Prints only written entries with metadata.
- `minimal` - Prints written `namespace:key = value` pairs.
- `namespaces` - Prints all written namespaces
- `blobs` - Prints all blobs and strings (reconstructs them if they are chunked).
- `storage_info` - Prints entry states count for every page.

.. note:: There is also a `none` option which will not print anything. This can be used with the integrity check option if the NVS partition contents are irrelevant.

The utility also provides an integrity check feature via the `-i` or `--integrity-check` option (available only with the `text` format as it would invalidate the `json` output). This feature scans through the entire partition and prints potential errors. It can be used with the `-d none` option which will print only the potential errors.