File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ There are three actions:
77- ** show_partitions** - will display all of the partitions found in an image file.
88- ** dump_partition** - will dump the raw bytes of a specified partition into a file.
99- ** create_elf** - reconstruct an ELF file from an 'app' partition (e.g. ota_0).
10+ - ** dump_nvs** - will parse a specified NVS partition and dump its contents.
1011
1112# Setup
1213` pip install -r requirements.txt `
@@ -28,3 +29,11 @@ Dumps to ble_data.dump
2829Converts ota_0 partition into ELF. Writes to ota_0.elf
2930
3031` $ python3 esp32_image_parser.py create_elf espwroom32.bin -partition ota_0 -output ota_0.elf `
32+
33+ ## Dump a specific NVS partition
34+ Dumps the nvs partition
35+
36+ ` $ python3 esp32_image_parser.py dump_nvs esp32_flashdump.bin -partition nvs `
37+
38+ Dumps the nvs partition as a JSON
39+ ` $ python3 esp32_image_parser.py dump_nvs flashdump/esp32_flashdump.bin -partition nvs -nvs_output_type json `
You can’t perform that action at this time.
0 commit comments