forked from espressif/esp_secure_cert_mgr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
40 lines (33 loc) · 1.5 KB
/
Kconfig
File metadata and controls
40 lines (33 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
menu "ESP Secure Cert Manager"
choice ESP_SECURE_CERT_PARTITION_TYPE
prompt "Choose the type of esp_secure_cert partition"
default ESP_SECURE_CERT_CUST_FLASH_PARTITION
help
The Pre-prov components support two type of partitions for reading the contents.
NVS partition and custom flash partition.
Select the appropriate type of partition.
config ESP_SECURE_CERT_NVS_PARTITION
bool "NVS partition"
config ESP_SECURE_CERT_CUST_FLASH_PARTITION
bool "Custom flash partition"
endchoice
config ESP_SECURE_CERT_PARTITION_NAME
string "Name of the secure cert partition"
default "esp_secure_cert"
help
The name of the secure_cert_partition. Should match the pre-provisioned partition.
This should be not be changed from the default value unless requied.
config ESP_SECURE_CERT_KEYS_PARTITION_NAME
string "Name of the nvs keys partition"
depends on ESP_SECURE_CERT_NVS_PARTITION
default "esp_secure_cert_keys"
help
The name of the secure_cert_partition. Should match the pre-provisioned partition.
This should be not be changed from the default value unless requied.
config ESP_SECURE_CERT_DS_PERIPHERAL
bool "Enable DS peripheral support"
default y
depends on !IDF_TARGET_ESP32
help
Enable the DS peripheral support. Not supported on esp32.
endmenu # ESP Secure Cert Manager