22 lines
549 B
Plaintext
Executable File
22 lines
549 B
Plaintext
Executable File
menu "Littlefs"
|
|
config LITTLEFS
|
|
bool "Enable Littlefs"
|
|
default n
|
|
|
|
choice LITTLEFS_PARTITION
|
|
depends on LITTLEFS
|
|
prompt "choose partition"
|
|
default LITTLEFS_NO_CONFIG_PARTITION
|
|
|
|
config LITTLEFS_USE_LITTLEFS_PARTITION
|
|
depends on LITTLEFS
|
|
bool "use littlefs partition as littlefs partition"
|
|
config LITTLEFS_USE_USR_CONFIG_PARTITION
|
|
depends on LITTLEFS
|
|
bool "use usr_config partition as littlefs partition"
|
|
config LITTLEFS_NO_CONFIG_PARTITION
|
|
depends on LITTLEFS
|
|
bool "no config littlefs partition"
|
|
endchoice
|
|
endmenu
|