Kconfig.zephyr 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. # General configuration options
  2. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. # Copyright (c) 2016 Intel Corporation
  4. # SPDX-License-Identifier: Apache-2.0
  5. # Include Kconfig.defconfig files first so that they can override defaults and
  6. # other symbol/choice properties by adding extra symbol/choice definitions.
  7. # After merging all definitions for a symbol/choice, Kconfig picks the first
  8. # property (e.g. the first default) with a satisfied condition.
  9. #
  10. # Shield defaults should have precedence over board defaults, which should have
  11. # precedence over SoC defaults, so include them in that order.
  12. #
  13. # $ARCH and $BOARD_DIR will be glob patterns when building documentation.
  14. # This loads custom shields defconfigs (from BOARD_ROOT)
  15. osource "$(KCONFIG_BINARY_DIR)/Kconfig.shield.defconfig"
  16. # This loads Zephyr base shield defconfigs
  17. source "boards/shields/*/Kconfig.defconfig"
  18. source "$(BOARD_DIR)/Kconfig.defconfig"
  19. # This loads custom SoC root defconfigs
  20. osource "$(KCONFIG_BINARY_DIR)/Kconfig.soc.defconfig"
  21. # This loads Zephyr base SoC root defconfigs
  22. osource "soc/$(ARCH)/*/Kconfig.defconfig"
  23. # This loads the toolchain defconfigs
  24. osource "$(TOOLCHAIN_KCONFIG_DIR)/Kconfig.defconfig"
  25. menu "Modules"
  26. source "modules/Kconfig"
  27. endmenu
  28. source "boards/Kconfig"
  29. source "soc/Kconfig"
  30. source "arch/Kconfig"
  31. source "kernel/Kconfig"
  32. source "drivers/Kconfig"
  33. source "lib/Kconfig"
  34. source "subsys/Kconfig"
  35. source "framework/Kconfig"
  36. osource "$(TOOLCHAIN_KCONFIG_DIR)/Kconfig"
  37. menu "Build and Link Features"
  38. menu "Linker Options"
  39. choice
  40. prompt "Linker Orphan Section Handling"
  41. default LINKER_ORPHAN_SECTION_WARN
  42. config LINKER_ORPHAN_SECTION_PLACE
  43. bool "Place"
  44. help
  45. Linker puts orphan sections in place without warnings
  46. or errors.
  47. config LINKER_ORPHAN_SECTION_WARN
  48. bool "Warn"
  49. help
  50. Linker places the orphan sections in output and issues
  51. warning about those sections.
  52. config LINKER_ORPHAN_SECTION_ERROR
  53. bool "Error"
  54. help
  55. Linker exits with error when an orphan section is found.
  56. endchoice
  57. config HAS_FLASH_LOAD_OFFSET
  58. bool
  59. help
  60. This option is selected by targets having a FLASH_LOAD_OFFSET
  61. and FLASH_LOAD_SIZE.
  62. if HAS_FLASH_LOAD_OFFSET
  63. config USE_DT_CODE_PARTITION
  64. bool "Link application into /chosen/zephyr,code-partition from devicetree"
  65. help
  66. When enabled, the application will be linked into the flash partition
  67. selected by the zephyr,code-partition property in /chosen in devicetree.
  68. When this is disabled, the flash load offset and size can be set manually
  69. below.
  70. # Workaround for not being able to have commas in macro arguments
  71. DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition
  72. config FLASH_LOAD_OFFSET
  73. # Only user-configurable when USE_DT_CODE_PARTITION is disabled
  74. hex "Kernel load offset" if !USE_DT_CODE_PARTITION
  75. default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_CODE_PARTITION)) if USE_DT_CODE_PARTITION
  76. default 0
  77. help
  78. This option specifies the byte offset from the beginning of flash that
  79. the kernel should be loaded into. Changing this value from zero will
  80. affect the Zephyr image's link, and will decrease the total amount of
  81. flash available for use by application code.
  82. If unsure, leave at the default value 0.
  83. config FLASH_LOAD_SIZE
  84. # Only user-configurable when USE_DT_CODE_PARTITION is disabled
  85. hex "Kernel load size" if !USE_DT_CODE_PARTITION
  86. default $(dt_chosen_reg_size_hex,$(DT_CHOSEN_Z_CODE_PARTITION)) if USE_DT_CODE_PARTITION
  87. default 0
  88. help
  89. If non-zero, this option specifies the size, in bytes, of the flash
  90. area that the Zephyr image will be allowed to occupy. If zero, the
  91. image will be able to occupy from the FLASH_LOAD_OFFSET to the end of
  92. the device.
  93. If unsure, leave at the default value 0.
  94. endif # HAS_FLASH_LOAD_OFFSET
  95. config ROM_START_OFFSET
  96. hex
  97. prompt "ROM start offset" if !BOOTLOADER_MCUBOOT
  98. default 0x200 if BOOTLOADER_MCUBOOT
  99. default 0
  100. help
  101. If the application is built for chain-loading by a bootloader this
  102. variable is required to be set to value that leaves sufficient
  103. space between the beginning of the image and the start of the first
  104. section to store an image header or any other metadata.
  105. In the particular case of the MCUboot bootloader this reserves enough
  106. space to store the image header, which should also meet vector table
  107. alignment requirements on most ARM targets, although some targets
  108. may require smaller or larger values.
  109. config LD_LINKER_SCRIPT_SUPPORTED
  110. bool
  111. default y
  112. choice LINKER_SCRIPT
  113. prompt "Linker script"
  114. default LD_LINKER_TEMPLATE if LD_LINKER_SCRIPT_SUPPORTED
  115. config LD_LINKER_TEMPLATE
  116. bool "LD template"
  117. depends on LD_LINKER_SCRIPT_SUPPORTED
  118. help
  119. Select this option to use the LD linker script templates.
  120. The templates are pre-processed by the C pre-processor to create the
  121. final LD linker script.
  122. config CMAKE_LINKER_GENERATOR
  123. bool "CMake generator"
  124. depends on ARM
  125. help
  126. Select this option to use the Zephyr CMake linker script generator.
  127. The linker configuration is written in CMake and the final linker
  128. script will be generated by the toolchain specific linker generator.
  129. For LD based linkers, this will be the ld generator, for ARMClang /
  130. armlink based linkers it will be the scatter generator.
  131. endchoice
  132. config HAVE_CUSTOM_LINKER_SCRIPT
  133. bool "Custom linker script provided"
  134. help
  135. Set this option if you have a custom linker script which needed to
  136. be define in CUSTOM_LINKER_SCRIPT.
  137. config CUSTOM_LINKER_SCRIPT
  138. string "Path to custom linker script"
  139. depends on HAVE_CUSTOM_LINKER_SCRIPT
  140. help
  141. Path to the linker script to be used instead of the one define by the
  142. board.
  143. The linker script must be based on a version provided by Zephyr since
  144. the kernel can expect a certain layout/certain regions.
  145. This is useful when an application needs to add sections into the
  146. linker script and avoid having to change the script provided by
  147. Zephyr.
  148. config KERNEL_ENTRY
  149. string "Kernel entry symbol"
  150. default "__start"
  151. help
  152. Code entry symbol, to be set at linking phase.
  153. config LINKER_SORT_BY_ALIGNMENT
  154. bool "Sort input sections by alignment"
  155. default y
  156. help
  157. This turns on the linker flag to sort sections by alignment
  158. in decreasing size of symbols. This helps to minimize
  159. padding between symbols.
  160. config SRAM_VECTOR_TABLE
  161. bool "Place the vector table in SRAM instead of flash"
  162. help
  163. The option specifies that the vector table should be placed at the
  164. start of SRAM instead of the start of flash.
  165. config HAS_SRAM_OFFSET
  166. bool
  167. help
  168. This option is selected by targets that require SRAM_OFFSET.
  169. config SRAM_OFFSET
  170. hex "Kernel SRAM offset" if HAS_SRAM_OFFSET
  171. default 0
  172. help
  173. This option specifies the byte offset from the beginning of SRAM
  174. where the kernel begins. Changing this value from zero will affect
  175. the Zephyr image's link, and will decrease the total amount of
  176. SRAM available for use by application code.
  177. If unsure, leave at the default value 0.
  178. menu "Linker Sections"
  179. config LINKER_USE_BOOT_SECTION
  180. bool "Enable Usage of Boot Linker Section"
  181. help
  182. If enabled, the symbols which are needed for the boot process
  183. will be put into another linker section reserved for these
  184. symbols.
  185. Requires that boot sections exist in the architecture, SoC,
  186. board or custom linker script.
  187. config LINKER_USE_PINNED_SECTION
  188. bool "Enable Usage of Pinned Linker Section"
  189. help
  190. If enabled, the symbols which need to be pinned in memory
  191. will be put into another linker section reserved for pinned
  192. symbols. During boot, the corresponding memory will be marked
  193. as pinned.
  194. Requires that pinned sections exist in the architecture, SoC,
  195. board or custom linker script.
  196. config LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT
  197. bool "Generic sections are present at boot" if DEMAND_PAGING && LINKER_USE_PINNED_SECTION
  198. default y
  199. help
  200. When disabled, the linker sections other than the boot and
  201. pinned sections will be marked as not present in the page
  202. tables. This allows kernel to pull in data pages on demand
  203. as required by current execution context when demand paging
  204. is enabled. There is no need to load all code and data into
  205. memory at once.
  206. If unsure, say Y.
  207. endmenu # "Linker Sections"
  208. endmenu
  209. menu "Compiler Options"
  210. config CODING_GUIDELINE_CHECK
  211. bool "Enforce coding guideline rules"
  212. help
  213. Use available compiler flags to check coding guideline rules during
  214. the build.
  215. config NATIVE_APPLICATION
  216. bool "Build as a native host application"
  217. help
  218. Build as a native application that can run on the host and using
  219. resources and libraries provided by the host.
  220. choice
  221. prompt "Optimization level"
  222. default NO_OPTIMIZATIONS if COVERAGE
  223. default DEBUG_OPTIMIZATIONS if DEBUG
  224. default SIZE_OPTIMIZATIONS
  225. help
  226. Note that these flags shall only control the compiler
  227. optimization level, and that no extra debug code shall be
  228. conditionally compiled based on them.
  229. config SIZE_OPTIMIZATIONS
  230. bool "Optimize for size"
  231. help
  232. Compiler optimizations will be set to -Os independently of other
  233. options.
  234. config SPEED_OPTIMIZATIONS
  235. bool "Optimize for speed"
  236. help
  237. Compiler optimizations will be set to -O2 independently of other
  238. options.
  239. config DEBUG_OPTIMIZATIONS
  240. bool "Optimize debugging experience"
  241. help
  242. Compiler optimizations will be set to -Og independently of other
  243. options.
  244. config NO_OPTIMIZATIONS
  245. bool "Optimize nothing"
  246. help
  247. Compiler optimizations will be set to -O0 independently of other
  248. options.
  249. endchoice
  250. config COMPILER_COLOR_DIAGNOSTICS
  251. bool "Enable colored diganostics"
  252. default y
  253. help
  254. Compiler diagnostic messages are colorized.
  255. config COMPILER_OPT
  256. string "Custom compiler options"
  257. help
  258. This option is a free-form string that is passed to the compiler
  259. when building all parts of a project (i.e. kernel).
  260. The compiler options specified by this string supplement the
  261. predefined set of compiler supplied by the build system,
  262. and can be used to change compiler optimization, warning and error
  263. messages, and so on.
  264. config MISRA_SANE
  265. bool "MISRA standards compliance features"
  266. help
  267. Causes the source code to build in "MISRA" mode, which
  268. disallows some otherwise-permitted features of the C
  269. standard for safety reasons. Specifically variable length
  270. arrays are not permitted (and gcc will enforce this).
  271. endmenu
  272. choice
  273. prompt "Error checking behavior for CHECK macro"
  274. default RUNTIME_ERROR_CHECKS
  275. config ASSERT_ON_ERRORS
  276. bool "Assert on all errors"
  277. help
  278. Assert on errors covered with the CHECK macro.
  279. config NO_RUNTIME_CHECKS
  280. bool "No runtime error checks"
  281. help
  282. Do not do any runtime checks or asserts when using the CHECK macro.
  283. config RUNTIME_ERROR_CHECKS
  284. bool "Enable runtime error checks"
  285. help
  286. Always perform runtime checks covered with the CHECK macro. This
  287. option is the default and the only option used during testing.
  288. endchoice
  289. menu "Build Options"
  290. config KERNEL_BIN_NAME
  291. string "The kernel binary name"
  292. default "zephyr"
  293. help
  294. This option sets the name of the generated kernel binary.
  295. config OUTPUT_STAT
  296. bool "Create a statistics file"
  297. default y
  298. help
  299. Create a stat file using readelf -e <elf>
  300. config OUTPUT_DISASSEMBLY
  301. bool "Create a disassembly file"
  302. default y
  303. help
  304. Create an .lst file with the assembly listing of the firmware.
  305. config OUTPUT_DISASSEMBLE_ALL
  306. bool "Disassemble all sections with source. Fill zeros."
  307. default n
  308. depends on OUTPUT_DISASSEMBLY
  309. help
  310. The .lst file will contain complete disassembly of the firmware
  311. not just those expected to contain instructions including zeros
  312. config OUTPUT_PRINT_MEMORY_USAGE
  313. bool "Print memory usage to stdout"
  314. default y
  315. help
  316. If the toolchain supports it, this option will pass
  317. --print-memory-region to the linker when it is doing it's first
  318. linker pass. Note that the memory regions are symbolic concepts
  319. defined by the linker scripts and do not necessarily map
  320. directly to the real physical address space. Take also note that
  321. some platforms do two passes of the linker so the results do not
  322. match exactly to the final elf file. See also rom_report,
  323. ram_report and
  324. https://sourceware.org/binutils/docs/ld/MEMORY.html
  325. config CLEANUP_INTERMEDIATE_FILES
  326. bool "Remove all intermediate files"
  327. help
  328. Delete intermediate files to save space and cleanup clutter resulting
  329. from the build process.
  330. config BUILD_NO_GAP_FILL
  331. bool "Don't fill gaps in generated hex/bin/s19 files."
  332. config BUILD_OUTPUT_HEX
  333. bool "Build a binary in HEX format"
  334. help
  335. Build an Intel HEX binary zephyr/zephyr.hex in the build directory.
  336. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
  337. config BUILD_OUTPUT_BIN
  338. bool "Build a binary in BIN format"
  339. default y
  340. help
  341. Build a "raw" binary zephyr/zephyr.bin in the build directory.
  342. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
  343. config BUILD_OUTPUT_EFI
  344. bool "Build as an EFI application"
  345. default n
  346. depends on X86_64
  347. help
  348. Build as an EFI application.
  349. This works by creating a "zephyr.efi" EFI binary containing a zephyr
  350. image extracted from a built zephyr.elf file. EFI applications are
  351. relocatable, and cannot be placed at specific locations in memory.
  352. Instead, the stub code will copy the embedded zephyr sections to the
  353. appropriate locations at startup, clear any zero-filled (BSS, etc...)
  354. areas, then jump into the 64 bit entry point.
  355. config BUILD_OUTPUT_EXE
  356. bool "Build a binary in ELF format with .exe extension"
  357. help
  358. Build an ELF binary that can run in the host system at
  359. zephyr/zephyr.exe in the build directory.
  360. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
  361. config BUILD_OUTPUT_S19
  362. bool "Build a binary in S19 format"
  363. help
  364. Build an S19 binary zephyr/zephyr.s19 in the build directory.
  365. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
  366. config BUILD_OUTPUT_UF2
  367. bool "Build a binary in UF2 format"
  368. depends on BUILD_OUTPUT_BIN
  369. help
  370. Build a UF2 binary zephyr/zephyr.uf2 in the build directory.
  371. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
  372. if BUILD_OUTPUT_UF2
  373. config BUILD_OUTPUT_UF2_FAMILY_ID
  374. string "UF2 device family ID"
  375. default "0x1c5f21b0" if SOC_ESP32
  376. default "0xada52840" if SOC_NRF52840_QIAA
  377. default "0x4fb2d5bd" if SOC_SERIES_IMX_RT
  378. default "0x2abc77ec" if SOC_SERIES_LPC55XXX
  379. default "0x68ed2b88" if SOC_SERIES_SAMD21
  380. default "0x55114460" if SOC_SERIES_SAMD51
  381. default "0x647824b6" if SOC_SERIES_STM32F0X
  382. default "0x5d1a0a2e" if SOC_SERIES_STM32F2X
  383. default "0x6b846188" if SOC_SERIES_STM32F3X
  384. default "0x53b80f00" if SOC_SERIES_STM32F7X
  385. default "0x300f5633" if SOC_SERIES_STM32G0X
  386. default "0x4c71240a" if SOC_SERIES_STM32G4X
  387. default "0x6db66082" if SOC_SERIES_STM32H7X
  388. default "0x202e3a91" if SOC_SERIES_STM32L0X
  389. default "0x1e1f432d" if SOC_SERIES_STM32L1X
  390. default "0x00ff6919" if SOC_SERIES_STM32L4X
  391. default "0x04240bdf" if SOC_SERIES_STM32L5X
  392. default "0x70d16653" if SOC_SERIES_STM32WBX
  393. default "0x5ee21072" if SOC_STM32F103XE
  394. default "0x57755a57" if SOC_STM32F401XC || SOC_STM32F401XE
  395. default "0x6d0922fa" if SOC_STM32F407XE
  396. default "0x8fb060fe" if SOC_STM32F407XG
  397. help
  398. UF2 bootloaders only accept UF2 files with a matching family ID.
  399. This can be either a hex, e.g. 0x68ed2b88, or well-known family
  400. name string. If the SoC in use is known by UF2, the Family ID will
  401. be pre-filled with the known value.
  402. endif # BUILD_OUTPUT_UF2
  403. config BUILD_OUTPUT_STRIPPED
  404. bool "Build a stripped binary"
  405. help
  406. Build a stripped binary zephyr/zephyr.strip in the build directory.
  407. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME.
  408. config APPLICATION_DEFINED_SYSCALL
  409. bool "Scan application folder for any syscall definition"
  410. help
  411. Scan additional folders inside application source folder
  412. for application defined syscalls.
  413. config MAKEFILE_EXPORTS
  414. bool "Generate build metadata files named Makefile.exports"
  415. help
  416. Generates a file with build information that can be read by
  417. third party Makefile-based build systems.
  418. config DEPRECATED_ZEPHYR_INT_TYPES
  419. bool "Allow the use of the deprecated zephyr integer types"
  420. help
  421. Allows the use of the deprecated Zephyr integer typedefs defined in
  422. Zephyr 2.3 and previous versions. These types are:
  423. u8_t, u16_t, u32_t, u64_t, s8_t, s16_t, s32_t, and s64_t.
  424. endmenu
  425. endmenu
  426. menu "Boot Options"
  427. config IS_BOOTLOADER
  428. bool "Act as a bootloader"
  429. depends on XIP
  430. depends on ARM
  431. help
  432. This option indicates that Zephyr will act as a bootloader to execute
  433. a separate Zephyr image payload.
  434. config BOOTLOADER_SRAM_SIZE
  435. int "SRAM reserved for bootloader"
  436. default 16
  437. depends on !XIP || IS_BOOTLOADER
  438. depends on ARM || XTENSA
  439. help
  440. This option specifies the amount of SRAM (measure in kB) reserved for
  441. a bootloader image, when either:
  442. - the Zephyr image itself is to act as the bootloader, or
  443. - Zephyr is a !XIP image, which implicitly assumes existence of a
  444. bootloader that loads the Zephyr !XIP image onto SRAM.
  445. config MCUBOOT
  446. bool
  447. help
  448. Hidden option used to indicate that the current image is MCUBoot
  449. config BOOTLOADER_MCUBOOT
  450. bool "MCUboot bootloader support"
  451. select USE_DT_CODE_PARTITION
  452. imply INIT_ARCH_HW_AT_BOOT if ARCH_SUPPORTS_ARCH_HW_INIT
  453. depends on !MCUBOOT
  454. help
  455. This option signifies that the target uses MCUboot as a bootloader,
  456. or in other words that the image is to be chain-loaded by MCUboot.
  457. This sets several required build system and Device Tree options in
  458. order for the image generated to be bootable using the MCUboot open
  459. source bootloader. Currently this includes:
  460. * Setting ROM_START_OFFSET to a default value that allows space
  461. for the MCUboot image header
  462. * Activating SW_VECTOR_RELAY_CLIENT on Cortex-M0
  463. (or Armv8-M baseline) targets with no built-in vector relocation
  464. mechanisms
  465. By default, this option instructs Zephyr to initialize the core
  466. architecture HW registers during boot, when this is supported by
  467. the application. This removes the need by MCUboot to reset
  468. the core registers' state itself.
  469. if BOOTLOADER_MCUBOOT
  470. config MCUBOOT_SIGNATURE_KEY_FILE
  471. string "Path to the mcuboot signing key file"
  472. default ""
  473. help
  474. The file contains a key pair whose public half is verified
  475. by your target's MCUboot image. The file is in PEM format.
  476. If set to a non-empty value, the build system tries to
  477. sign the final binaries using a 'west sign -t imgtool' command.
  478. The signed binaries are placed in the build directory
  479. at zephyr/zephyr.signed.bin and zephyr/zephyr.signed.hex.
  480. The file names can be customized with CONFIG_KERNEL_BIN_NAME.
  481. The existence of bin and hex files depends on CONFIG_BUILD_OUTPUT_BIN
  482. and CONFIG_BUILD_OUTPUT_HEX.
  483. This option should contain a path to the same file as the
  484. BOOT_SIGNATURE_KEY_FILE option in your MCUboot .config. The path
  485. may be absolute or relative to the west workspace topdir. (The MCUboot
  486. config option is used for the MCUboot bootloader image; this option is
  487. for your application which is to be loaded by MCUboot. The MCUboot
  488. config option can be a relative path from the MCUboot repository
  489. root.)
  490. If left empty, you must sign the Zephyr binaries manually.
  491. config MCUBOOT_ENCRYPTION_KEY_FILE
  492. string "Path to the mcuboot encryption key file"
  493. default ""
  494. depends on MCUBOOT_SIGNATURE_KEY_FILE != ""
  495. help
  496. The file contains the public key that is used to encrypt the
  497. ephemeral key that encrypts the image. The corresponding
  498. private key is hard coded in the MCUboot source code and is
  499. used to decrypt the ephemeral key that is embedded in the
  500. image. The file is in PEM format.
  501. If set to a non-empty value, the build system tries to
  502. sign and encrypt the final binaries using a 'west sign -t imgtool'
  503. command. The binaries are placed in the build directory at
  504. zephyr/zephyr.signed.encrypted.bin and
  505. zephyr/zephyr.signed.encrypted.hex.
  506. The file names can be customized with CONFIG_KERNEL_BIN_NAME.
  507. The existence of bin and hex files depends on CONFIG_BUILD_OUTPUT_BIN
  508. and CONFIG_BUILD_OUTPUT_HEX.
  509. This option should either be an absolute path or a path relative to
  510. the west workspace topdir.
  511. Example: './bootloader/mcuboot/enc-rsa2048-pub.pem'
  512. If left empty, you must encrypt the Zephyr binaries manually.
  513. config MCUBOOT_EXTRA_IMGTOOL_ARGS
  514. string "Extra arguments to pass to imgtool"
  515. default ""
  516. help
  517. If CONFIG_MCUBOOT_SIGNATURE_KEY_FILE is a non-empty string,
  518. you can use this option to pass extra options to imgtool.
  519. For example, you could set this to "--version 1.2".
  520. config MCUBOOT_GENERATE_CONFIRMED_IMAGE
  521. bool "Also generate a padded, confirmed image"
  522. help
  523. The signed, padded, and confirmed binaries are placed in the build
  524. directory at zephyr/zephyr.signed.confirmed.bin and
  525. zephyr/zephyr.signed.confirmed.hex.
  526. The file names can be customized with CONFIG_KERNEL_BIN_NAME.
  527. The existence of bin and hex files depends on CONFIG_BUILD_OUTPUT_BIN
  528. and CONFIG_BUILD_OUTPUT_HEX.
  529. endif # BOOTLOADER_MCUBOOT
  530. config BOOTLOADER_ESP_IDF
  531. bool "ESP-IDF bootloader support"
  532. depends on SOC_ESP32 || SOC_ESP32S2
  533. help
  534. This option will trigger the compilation of the ESP-IDF bootloader
  535. inside the build folder.
  536. At flash time, the bootloader will be flashed with the zephyr image
  537. config BOOTLOADER_BOSSA
  538. bool "BOSSA bootloader support"
  539. select USE_DT_CODE_PARTITION
  540. help
  541. Signifies that the target uses a BOSSA compatible bootloader. If CDC
  542. ACM USB support is also enabled then the board will reboot into the
  543. bootloader automatically when bossac is run.
  544. config BOOTLOADER_BOSSA_DEVICE_NAME
  545. string "BOSSA CDC ACM device name"
  546. depends on BOOTLOADER_BOSSA && CDC_ACM_DTE_RATE_CALLBACK_SUPPORT
  547. default "CDC_ACM_0"
  548. help
  549. Sets the CDC ACM port to watch for reboot commands.
  550. choice
  551. prompt "BOSSA bootloader variant"
  552. depends on BOOTLOADER_BOSSA
  553. config BOOTLOADER_BOSSA_LEGACY
  554. bool "Legacy"
  555. help
  556. Select the Legacy variant of the BOSSA bootloader. This is defined
  557. for compatibility mode only. The recommendation is use newer
  558. versions like Arduino or Adafruit UF2.
  559. config BOOTLOADER_BOSSA_ARDUINO
  560. bool "Arduino"
  561. help
  562. Select the Arduino variant of the BOSSA bootloader. Uses 0x07738135
  563. as the magic value to enter the bootloader.
  564. config BOOTLOADER_BOSSA_ADAFRUIT_UF2
  565. bool "Adafruit UF2"
  566. help
  567. Select the Adafruit UF2 variant of the BOSSA bootloader. Uses
  568. 0xf01669ef as the magic value to enter the bootloader.
  569. endchoice
  570. endmenu
  571. menu "Compatibility"
  572. config COMPAT_INCLUDES
  573. bool "Suppress warnings when using header shims"
  574. default y
  575. help
  576. Suppress any warnings from the pre-processor when including
  577. deprecated header files.
  578. endmenu