:orphan: .. title:: CONFIG_SB_SIGNING_COMMAND .. kconfig:: CONFIG_SB_SIGNING_COMMAND CONFIG_SB_SIGNING_COMMAND ######################### *Custom signing command* Type: ``string`` Help ==== .. code-block:: none This command will be called to produce a signature of the firmware. It will be called as "${CONFIG_SB_SIGNING_COMMAND} " The command must take calculate the signature over the the contents of the and write the signature to stdout. The signature must be on DER format. Direct dependencies =================== \ :kconfig:`SECURE_BOOT ` *(Includes any dependencies from ifs and menus.)* Default ======= - "" Kconfig definition ================== At ``/subsys/bootloader/Kconfig:75`` Included via ``/Kconfig:8`` → ``/Kconfig.zephyr:31`` → ``/modules/Kconfig:6`` → ``/doc/_build/kconfig/Kconfig.modules:2`` → ``/Kconfig.nrf:54`` → ``/subsys/Kconfig:8`` Menu path: (Top) → Modules → nrf (/home/runner/work/sdk-nrf/sdk-nrf/ncs/nrf) → Nordic nRF Connect → Bootloader → Use Secure Bootloader .. code-block:: kconfig config SB_SIGNING_COMMAND string "Custom signing command" if !SB_PRIVATE_KEY_PROVIDED default "" depends on SECURE_BOOT help This command will be called to produce a signature of the firmware. It will be called as "${CONFIG_SB_SIGNING_COMMAND} " The command must take calculate the signature over the the contents of the and write the signature to stdout. The signature must be on DER format. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*