Kconfig.zephyr 22 KB

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