mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
nvs_part_gen: Add changes to partition size input
This commit is contained in:
parent
226b6929e5
commit
0064357a98
@ -193,7 +193,6 @@ class Page(object):
|
||||
|
||||
data_val = data_bytes + (init_data_val * (data_len_needed - len(data_bytes)))
|
||||
encr_data_ret = self.encrypt_entry(data_val, tweak_val, encr_key_input)
|
||||
#print("\n<<<\n")
|
||||
encr_data_to_write = encr_data_to_write + encr_data_ret
|
||||
# Update values for encrypting next set of data bytes
|
||||
start_idx = end_idx
|
||||
@ -212,7 +211,7 @@ class Page(object):
|
||||
encr_data[0:len(encr_data_ret)] = encr_data_ret
|
||||
else:
|
||||
encr_data[0:len(encr_data_ret)] = encr_data_ret
|
||||
|
||||
|
||||
data = encr_data
|
||||
|
||||
data_offset = Page.FIRST_ENTRY_OFFSET + (Page.SINGLE_ENTRY_SIZE * self.entry_num)
|
||||
|
@ -22,9 +22,10 @@ import csv
|
||||
import argparse
|
||||
import shutil
|
||||
import distutils.dir_util
|
||||
from itertools import zip_longest
|
||||
sys.path.insert(0, os.getenv('IDF_PATH') + "/components/nvs_flash/nvs_partition_generator/")
|
||||
import nvs_partition_gen
|
||||
if not sys.version_info[0] < 3:
|
||||
from itertools import zip_longest
|
||||
|
||||
def verify_values_exist(input_values_file, keys_in_values_file):
|
||||
""" Verify all keys have corresponding values in values file
|
||||
@ -307,7 +308,7 @@ file_identifier=None,output_dir_path=None):
|
||||
dest='part_size',
|
||||
required=True,
|
||||
help='Size of NVS Partition in hex (must be multiple of 4096). Eg. 0x1000')
|
||||
|
||||
|
||||
parser.add_argument('--conf',
|
||||
dest='config_file',
|
||||
required=True,
|
||||
|
Loading…
x
Reference in New Issue
Block a user