Maybe I am missing something, but the networking2/ot_cli example in my setting compiles only after I included overlay-secure_storage.conf from zephyr examples:
(.venv) ~/zephyrproject$ west build -p -b promicro_nrf52840/nrf52840/uf2 zephyr/myprojects/openthread-applications/networking2/ot_cli/ -- -DOVERLAY_CONFIG="../../../../samples/psa/its/overlay-secure_storage.conf"
referring to:
https://github.com/zephyrproject-rtos/zephyr/blob/main/samples/psa/its/overlay-secure_storage.conf
Without this overlay it throws error about missing secure storage ITS implementation:
ERROR
The secure storage ITS module is enabled but has no implementation.
(CONFIG_SECURE_STORAGE_ITS_STORE_IMPLEMENTATION_NONE)
and later among similar others:
undefined reference to `secure_storage_its_store_get'
Tried with both nrf52840dongle and promicro_nrf52840 boards. I use zephyr installation according to:
https://docs.zephyrproject.org/latest/develop/getting_started/index.html
in a virtual environment.
Maybe I am missing something, but the networking2/ot_cli example in my setting compiles only after I included overlay-secure_storage.conf from zephyr examples:
(.venv) ~/zephyrproject$ west build -p -b promicro_nrf52840/nrf52840/uf2 zephyr/myprojects/openthread-applications/networking2/ot_cli/ -- -DOVERLAY_CONFIG="../../../../samples/psa/its/overlay-secure_storage.conf"
referring to:
https://github.com/zephyrproject-rtos/zephyr/blob/main/samples/psa/its/overlay-secure_storage.conf
Without this overlay it throws error about missing secure storage ITS implementation:
ERROR
The secure storage ITS module is enabled but has no implementation.
(CONFIG_SECURE_STORAGE_ITS_STORE_IMPLEMENTATION_NONE)
and later among similar others:
undefined reference to `secure_storage_its_store_get'
Tried with both nrf52840dongle and promicro_nrf52840 boards. I use zephyr installation according to:
https://docs.zephyrproject.org/latest/develop/getting_started/index.html
in a virtual environment.