:orphan: .. title:: CONFIG_BUILD_OUTPUT_HEX .. kconfig:: CONFIG_BUILD_OUTPUT_HEX CONFIG_BUILD_OUTPUT_HEX ####################### *Build a binary in HEX format* Type: ``bool`` Help ==== .. code-block:: none Build an Intel HEX binary zephyr/zephyr.hex in the build directory. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME. Defaults ======== - y - y - y Symbols that select this symbol =============================== - \ :kconfig:`BUILD_WITH_TFM ` - \ :kconfig:`SOC_SERIES_MUSCA_B1 ` - \ :kconfig:`SOC_SERIES_MUSCA_S1 ` - \ :kconfig:`SOC_OPENISA_RV32M1_RISCV32 ` - \ :kconfig:`SOC_SERIES_MUSCA_B1 ` - \ :kconfig:`SOC_SERIES_MUSCA_S1 ` - \ :kconfig:`SOC_OPENISA_RV32M1_RISCV32 ` - \ :kconfig:`SOC_FAMILY_EXX32 ` - \ :kconfig:`SOC_FAMILY_STM32 ` - \ :kconfig:`SOC_FAMILY_EXX32 ` - \ :kconfig:`SOC_FAMILY_STM32 ` - \ :kconfig:`CPU_NIOS2_GEN2 ` Kconfig definitions =================== At ``/arm/teensy4/Kconfig.defconfig:9`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config BUILD_OUTPUT_HEX bool default y depends on BOARD_TEENSY40 || BOARD_TEENSY41 ---- At ``/arm/nordic_nrf/Kconfig.defconfig:33`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:25`` → ``/kconfig/Kconfig.soc.defconfig:1`` Menu path: (Top) .. code-block:: kconfig config BUILD_OUTPUT_HEX bool default y depends on SOC_FAMILY_NRF ---- At ``/arm/nordic_nrf/Kconfig.defconfig:33`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` Menu path: (Top) .. code-block:: kconfig config BUILD_OUTPUT_HEX bool default y depends on SOC_FAMILY_NRF ---- At ``Kconfig.zephyr:410`` Included via ``Kconfig:8`` Menu path: (Top) → Build and Link Features → Build Options .. code-block:: kconfig config BUILD_OUTPUT_HEX bool "Build a binary in HEX format" help Build an Intel HEX binary zephyr/zephyr.hex in the build directory. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*