Kconfig.bootloader 862 B

123456789101112131415161718192021
  1. menu "Bootloader manager"
  2. config BOOTLOADER_COMPILE_TIME_DATE
  3. bool "Use time/date stamp for bootloader"
  4. default y
  5. depends on !APP_REPRODUCIBLE_BUILD
  6. help
  7. If set, then the bootloader will be built with the current time/date stamp.
  8. It is stored in the bootloader description
  9. structure. If not set, time/date stamp will be excluded from bootloader image.
  10. This can be useful for getting the
  11. same binary image files made from the same source, but at different times.
  12. config BOOTLOADER_PROJECT_VER
  13. int "Project version"
  14. default 1
  15. range 0 4294967295
  16. help
  17. Project version. It is placed in "version" field of the esp_bootloader_desc structure.
  18. The type of this field is "uint32_t".
  19. endmenu # "Bootloader manager"