Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: fix output build file names #20153

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions doc/nrf/app_dev/config_and_build/output_build_files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ Which files you are going to use depends on the application configuration and no
| | The file is located in the :file:`build/<your_application_name>/zephyr` directory. | |
+--------------------------------------+--------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------+
| :file:`zephyr.signed.bin` in | Secondary slot variant of the :file:`zephyr.signed.bin` file. | DFU process for single-core board targets. |
| :file:`mcuboot_secondary_app` folder | :ref:`Compatible with MCUboot <mcuboot:mcuboot_ncs>` in the :doc:`direct-xip mode <mcuboot:design>`. | |
| | ``zephyr`` is the value of :kconfig:option:`CONFIG_KERNEL_BIN_NAME`. | |
| :file:`mcuboot_secondary_app/zephyr` | :ref:`Compatible with MCUboot <mcuboot:mcuboot_ncs>` in the :doc:`direct-xip mode <mcuboot:design>`. | |
| folder | ``zephyr`` is the value of :kconfig:option:`CONFIG_KERNEL_BIN_NAME`. | |
+--------------------------------------+--------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------+
| :file:`zephyr.signed.hex` in | Secondary slot variant of the :file:`zephyr.signed.hex` file. | Programming single-core board targets. |
| :file:`mcuboot_secondary_app` folder | :ref:`Compatible with MCUboot <mcuboot:mcuboot_ncs>` in the :doc:`direct-xip mode <mcuboot:design>`. | |
| | ``zephyr`` is the value of :kconfig:option:`CONFIG_KERNEL_BIN_NAME`. | |
| :file:`mcuboot_secondary_app/zephyr` | :ref:`Compatible with MCUboot <mcuboot:mcuboot_ncs>` in the :doc:`direct-xip mode <mcuboot:design>`. | |
| folder | ``zephyr`` is the value of :kconfig:option:`CONFIG_KERNEL_BIN_NAME`. | |
+--------------------------------------+--------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------+
| :file:`dfu_application.zip` | Zip file containing both the MCUboot-compatible update images for one or more cores and a manifest | DFU process for both single-core and multi-core applications. |
| | describing its contents. | |
Expand Down Expand Up @@ -147,12 +147,12 @@ MCUboot output build files
| | It will not trigger a DFU procedure. |
| | ``zephyr`` is the value of :kconfig:option:`CONFIG_KERNEL_BIN_NAME`. |
+-----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| :file:`zephyr.signed.bin` in | Secondary slot variant of the :file:`app_update.bin` file intended for use when MCUboot is in the :doc:`direct-xip mode <mcuboot:design>`. |
| :file:`mcuboot_secondary_app` folder | Created when the :kconfig:option:`CONFIG_BOOT_BUILD_DIRECT_XIP_VARIANT` Kconfig option is enabled. |
| :file:`zephyr.signed.bin` in | Secondary slot variant of the :file:`zephyr.signed.bin` file intended for use when MCUboot is in the :doc:`direct-xip mode <mcuboot:design>`. |
| :file:`mcuboot_secondary_app/zephyr` folder | Created when the :kconfig:option:`CONFIG_BOOT_BUILD_DIRECT_XIP_VARIANT` Kconfig option is enabled. |
| | ``zephyr`` is the value of :kconfig:option:`CONFIG_KERNEL_BIN_NAME`. |
+-----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| :file:`zephyr.signed.hex` | Secondary slot variant of the :file:`app_signed.hex` file intended for use when MCUboot is in the :doc:`direct-xip mode <mcuboot:design>`. |
| :file:`mcuboot_secondary_app` folder | Created when the :kconfig:option:`CONFIG_BOOT_BUILD_DIRECT_XIP_VARIANT` Kconfig option is enabled. |
| :file:`zephyr.signed.hex` | Secondary slot variant of the :file:`zephyr.signed.hex` file intended for use when MCUboot is in the :doc:`direct-xip mode <mcuboot:design>`. |
| :file:`mcuboot_secondary_app/zephyr` folder | Created when the :kconfig:option:`CONFIG_BOOT_BUILD_DIRECT_XIP_VARIANT` Kconfig option is enabled. |
| | ``zephyr`` is the value of :kconfig:option:`CONFIG_KERNEL_BIN_NAME`. |
+-----------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

Expand Down