Skip to content

Commit

Permalink
[ESP32] Fix generation of encrypted factory partition (#26840)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamdp authored May 26, 2023
1 parent 58420de commit 49e36af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tools/generate_esp32_chip_factory_bin.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def generate_nvs_bin(encrypt, size, csv_filename, bin_filename):
if encrypt:
nvs_args.keygen = True
nvs_args.keyfile = NVS_KEY_PARTITION_BIN
nvs_args.inputkey = None,
nvs_args.inputkey = None
nvs_partition_gen.encrypt(nvs_args)
else:
nvs_partition_gen.generate(nvs_args)
Expand Down

0 comments on commit 49e36af

Please sign in to comment.