esp32c3-devkit: Restrict FS options when Flash Encryption is enabled
Signed-off-by: Gustavo Henrique Nihei <gustavo.nihei@espressif.com>
This commit is contained in:
parent
c1fac720ec
commit
cff2bc05e0
@ -84,14 +84,26 @@ choice ESP32C3_SPIFLASH_FS
|
|||||||
bool "SmartFS"
|
bool "SmartFS"
|
||||||
select FS_SMARTFS
|
select FS_SMARTFS
|
||||||
select MTD_SMART
|
select MTD_SMART
|
||||||
|
depends on !ESP32C3_SECURE_FLASH_ENC_ENABLED
|
||||||
|
|
||||||
|
comment "SmartFS not supported with Flash Encryption"
|
||||||
|
depends on ESP32C3_SECURE_FLASH_ENC_ENABLED
|
||||||
|
|
||||||
config ESP32C3_SPIFLASH_NXFFS
|
config ESP32C3_SPIFLASH_NXFFS
|
||||||
bool "NXFFS"
|
bool "NXFFS"
|
||||||
select FS_NXFFS
|
select FS_NXFFS
|
||||||
|
depends on !ESP32C3_SECURE_FLASH_ENC_ENABLED
|
||||||
|
|
||||||
|
comment "NXFFS not supported with Flash Encryption"
|
||||||
|
depends on ESP32C3_SECURE_FLASH_ENC_ENABLED
|
||||||
|
|
||||||
config ESP32C3_SPIFLASH_SPIFFS
|
config ESP32C3_SPIFLASH_SPIFFS
|
||||||
bool "SPIFFS"
|
bool "SPIFFS"
|
||||||
select FS_SPIFFS
|
select FS_SPIFFS
|
||||||
|
depends on !ESP32C3_SECURE_FLASH_ENC_ENABLED
|
||||||
|
|
||||||
|
comment "SPIFFS not supported with Flash Encryption"
|
||||||
|
depends on ESP32C3_SECURE_FLASH_ENC_ENABLED
|
||||||
|
|
||||||
config ESP32C3_SPIFLASH_LITTLEFS
|
config ESP32C3_SPIFLASH_LITTLEFS
|
||||||
bool "LittleFS"
|
bool "LittleFS"
|
||||||
|
Loading…
Reference in New Issue
Block a user