mcuboot.cmake 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # Copyright (c) 2020 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. # This file includes extra build system logic that is enabled when
  4. # CONFIG_BOOTLOADER_MCUBOOT=y.
  5. #
  6. # It builds signed binaries using imgtool as a post-processing step
  7. # after zephyr/zephyr.elf is created in the build directory.
  8. #
  9. # Since this file is brought in via include(), we do the work in a
  10. # function to avoid polluting the top-level scope.
  11. function(zephyr_runner_file type path)
  12. # Property magic which makes west flash choose the signed build
  13. # output of a given type.
  14. set_target_properties(runners_yaml_props_target PROPERTIES "${type}_file" "${path}")
  15. endfunction()
  16. function(zephyr_mcuboot_tasks)
  17. set(keyfile "${CONFIG_MCUBOOT_SIGNATURE_KEY_FILE}")
  18. set(keyfile_enc "${CONFIG_MCUBOOT_ENCRYPTION_KEY_FILE}")
  19. # Check for misconfiguration.
  20. if("${keyfile}" STREQUAL "")
  21. # No signature key file, no signed binaries. No error, though:
  22. # this is the documented behavior.
  23. return()
  24. endif()
  25. if(NOT WEST)
  26. # This feature requires west.
  27. message(FATAL_ERROR "Can't sign images for MCUboot: west not found. To fix, install west and ensure it's on PATH.")
  28. endif()
  29. foreach(file keyfile keyfile_enc)
  30. if(NOT "${${file}}" STREQUAL "")
  31. if(NOT IS_ABSOLUTE "${${file}}")
  32. # Relative paths are relative to 'west topdir'.
  33. set(${file} "${WEST_TOPDIR}/${${file}}")
  34. endif()
  35. if(NOT EXISTS "${${file}}")
  36. message(FATAL_ERROR "west sign can't find file ${${file}} (Note: Relative paths are relative to the west workspace topdir \"${WEST_TOPDIR}\")")
  37. elseif(NOT (CONFIG_BUILD_OUTPUT_BIN OR CONFIG_BUILD_OUTPUT_HEX))
  38. message(FATAL_ERROR "Can't sign images for MCUboot: Neither CONFIG_BUILD_OUTPUT_BIN nor CONFIG_BUILD_OUTPUT_HEX is enabled, so there's nothing to sign.")
  39. endif()
  40. endif()
  41. endforeach()
  42. # Find imgtool. Even though west is installed, imgtool might not be.
  43. # The user may also have a custom manifest which doesn't include
  44. # MCUboot.
  45. #
  46. # Therefore, go with an explicitly installed imgtool first, falling
  47. # back on mcuboot/scripts/imgtool.py.
  48. if(IMGTOOL)
  49. set(imgtool_path "${IMGTOOL}")
  50. elseif(DEFINED ZEPHYR_MCUBOOT_MODULE_DIR)
  51. set(IMGTOOL_PY "${ZEPHYR_MCUBOOT_MODULE_DIR}/scripts/imgtool.py")
  52. if(EXISTS "${IMGTOOL_PY}")
  53. set(imgtool_path "${IMGTOOL_PY}")
  54. endif()
  55. endif()
  56. # No imgtool, no signed binaries.
  57. if(NOT DEFINED imgtool_path)
  58. message(FATAL_ERROR "Can't sign images for MCUboot: can't find imgtool. To fix, install imgtool with pip3, or add the mcuboot repository to the west manifest and ensure it has a scripts/imgtool.py file.")
  59. return()
  60. endif()
  61. # Basic 'west sign' command and output format independent arguments.
  62. set(west_sign ${WEST} sign --quiet --tool imgtool
  63. --tool-path "${imgtool_path}"
  64. --build-dir "${APPLICATION_BINARY_DIR}")
  65. # Arguments to imgtool.
  66. if(NOT CONFIG_MCUBOOT_EXTRA_IMGTOOL_ARGS STREQUAL "")
  67. # Separate extra arguments into the proper format for adding to
  68. # extra_post_build_commands.
  69. #
  70. # Use UNIX_COMMAND syntax for uniform results across host
  71. # platforms.
  72. separate_arguments(imgtool_extra UNIX_COMMAND ${CONFIG_MCUBOOT_EXTRA_IMGTOOL_ARGS})
  73. else()
  74. set(imgtool_extra)
  75. endif()
  76. set(imgtool_args -- --key "${keyfile}" ${imgtool_extra})
  77. # Extensionless prefix of any output file.
  78. set(output ${ZEPHYR_BINARY_DIR}/${KERNEL_NAME})
  79. # List of additional build byproducts.
  80. set(byproducts)
  81. # 'west sign' arguments for confirmed, unconfirmed and encrypted images.
  82. set(unconfirmed_args)
  83. set(confirmed_args)
  84. set(encrypted_args)
  85. # Set up .bin outputs.
  86. if(CONFIG_BUILD_OUTPUT_BIN)
  87. list(APPEND unconfirmed_args --bin --sbin ${output}.signed.bin)
  88. list(APPEND byproducts ${output}.signed.bin)
  89. zephyr_runner_file(bin ${output}.signed.bin)
  90. if(CONFIG_MCUBOOT_GENERATE_CONFIRMED_IMAGE)
  91. list(APPEND confirmed_args --bin --sbin ${output}.signed.confirmed.bin)
  92. list(APPEND byproducts ${output}.signed.confirmed.bin)
  93. endif()
  94. if(NOT "${keyfile_enc}" STREQUAL "")
  95. list(APPEND encrypted_args --bin --sbin ${output}.signed.encrypted.bin)
  96. list(APPEND byproducts ${output}.signed.encrypted.bin)
  97. endif()
  98. endif()
  99. # Set up .hex outputs.
  100. if(CONFIG_BUILD_OUTPUT_HEX)
  101. list(APPEND unconfirmed_args --hex --shex ${output}.signed.hex)
  102. list(APPEND byproducts ${output}.signed.hex)
  103. zephyr_runner_file(hex ${output}.signed.hex)
  104. if(CONFIG_MCUBOOT_GENERATE_CONFIRMED_IMAGE)
  105. list(APPEND confirmed_args --hex --shex ${output}.signed.confirmed.hex)
  106. list(APPEND byproducts ${output}.signed.confirmed.hex)
  107. endif()
  108. if(NOT "${keyfile_enc}" STREQUAL "")
  109. list(APPEND encrypted_args --hex --shex ${output}.signed.encrypted.hex)
  110. list(APPEND byproducts ${output}.signed.encrypted.hex)
  111. endif()
  112. endif()
  113. # Add the west sign calls and their byproducts to the post-processing
  114. # steps for zephyr.elf.
  115. #
  116. # CMake guarantees that multiple COMMANDs given to
  117. # add_custom_command() are run in order, so adding the 'west sign'
  118. # calls to the "extra_post_build_commands" property ensures they run
  119. # after the commands which generate the unsigned versions.
  120. set_property(GLOBAL APPEND PROPERTY extra_post_build_commands COMMAND
  121. ${west_sign} ${unconfirmed_args} ${imgtool_args})
  122. if(confirmed_args)
  123. set_property(GLOBAL APPEND PROPERTY extra_post_build_commands COMMAND
  124. ${west_sign} ${confirmed_args} ${imgtool_args} --pad --confirm)
  125. endif()
  126. if(encrypted_args)
  127. set_property(GLOBAL APPEND PROPERTY extra_post_build_commands COMMAND
  128. ${west_sign} ${encrypted_args} ${imgtool_args} --encrypt "${keyfile_enc}")
  129. endif()
  130. set_property(GLOBAL APPEND PROPERTY extra_post_build_byproducts ${byproducts})
  131. endfunction()
  132. zephyr_mcuboot_tasks()