@@ -32,39 +32,13 @@ config SETTINGS_ENCODE_LEN
3232
3333choice SETTINGS_BACKEND
3434 prompt "Storage back-end"
35- default SETTINGS_ZMS if ZMS
3635 default SETTINGS_NVS if NVS
3736 default SETTINGS_FCB if FCB
3837 default SETTINGS_FILE if FILE_SYSTEM
3938 default SETTINGS_NONE
4039 help
4140 Storage back-end to be used by the settings subsystem.
4241
43- config SETTINGS_ZMS
44- bool "ZMS (Zephyr Memory Storage)"
45- depends on ZMS
46- help
47- Use ZMS as settings storage backend.
48-
49- if SETTINGS_ZMS
50-
51- config SETTINGS_ZMS_NAME_CACHE
52- bool "ZMS name lookup cache"
53- select SYS_HASH_FUNC32
54- help
55- Enable ZMS name lookup cache, used to reduce the Settings name
56- lookup time.
57-
58- config SETTINGS_ZMS_NAME_CACHE_SIZE
59- int "ZMS name lookup cache size"
60- default 128
61- range 1 $(UINT32_MAX)
62- depends on SETTINGS_ZMS_NAME_CACHE
63- help
64- Number of entries in Settings ZMS name cache.
65-
66- endif # SETTINGS_ZMS
67-
6842config SETTINGS_FCB
6943 bool "FCB"
7044 depends on FCB
@@ -158,21 +132,6 @@ config SETTINGS_NVS_SECTOR_COUNT
158132 help
159133 Number of sectors used for the NVS settings area
160134
161- config SETTINGS_ZMS_SECTOR_SIZE_MULT
162- int "Sector size of the ZMS settings area"
163- default 1
164- depends on SETTINGS_ZMS
165- help
166- The sector size to use for the ZMS settings area as a multiple of
167- FLASH_ERASE_BLOCK_SIZE.
168-
169- config SETTINGS_ZMS_SECTOR_COUNT
170- int "Sector count of the ZMS settings area"
171- default 8
172- depends on SETTINGS_ZMS
173- help
174- Number of sectors used for the ZMS settings area
175-
176135config SETTINGS_SHELL
177136 bool "Settings shell"
178137 depends on SHELL
0 commit comments