Kconfig 902 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Flash map abstraction module
  2. # Copyright (c) 2017 Nordic Semiconductor ASA
  3. # SPDX-License-Identifier: Apache-2.0
  4. #
  5. # Flash map
  6. #
  7. menuconfig FLASH_MAP
  8. bool "Flash map abstraction module"
  9. depends on FLASH_HAS_DRIVER_ENABLED
  10. help
  11. Enable support of flash map abstraction.
  12. if FLASH_MAP
  13. config FLASH_MAP_SHELL
  14. bool "Enable flash map shell interface"
  15. depends on SHELL
  16. help
  17. This enables shell commands to list and test flash maps.
  18. config FLASH_MAP_CUSTOM
  19. bool "Custom flash map description"
  20. help
  21. This option enables custom flash map description.
  22. User must provide such a description in place of default on
  23. if had enabled this option.
  24. config FLASH_AREA_CHECK_INTEGRITY
  25. bool "Enable flash check functions"
  26. select TINYCRYPT
  27. select TINYCRYPT_SHA256
  28. help
  29. If enabled, there will be available the backend to check flash
  30. integrity using SHA-256 verification algorithm.
  31. endif