Kconfig 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # SPDX-License-Identifier: Apache-2.0
  2. config BOARD_DEPRECATED_RELEASE
  3. string
  4. help
  5. This hidden option is set in the board configuration and indicates
  6. the Zephyr release that the board configuration will be removed.
  7. When set, any build for that board will generate a clearly visible
  8. deprecation warning.
  9. config QEMU_TARGET
  10. bool
  11. help
  12. Mark all QEMU targets with this variable for checking whether we are
  13. running in an emulated environment.
  14. config NET_DRIVERS
  15. bool
  16. default y if QEMU_TARGET && NETWORKING
  17. help
  18. When building for a qemu target then NET_DRIVERS will be default
  19. enabled to allow for easy use of SLIP or PPP
  20. # Note: $BOARD_DIR might be a glob pattern
  21. choice
  22. prompt "Board Selection"
  23. source "$(BOARD_DIR)/Kconfig.board"
  24. endchoice
  25. # Parse shields references
  26. # Don't do it as a menuconfig, as shield selection is a CMake feature.
  27. # This loads custom shields Kconfig (from BOARD_ROOT)
  28. osource "$(KCONFIG_BINARY_DIR)/Kconfig.shield"
  29. # This loads Zephyr base shield defconfigs
  30. rsource "shields/*/Kconfig.shield"
  31. menu "Board Options"
  32. config QEMU_ICOUNT
  33. bool "QEMU icount mode"
  34. depends on QEMU_TARGET
  35. default y if !NETWORKING && !BT
  36. help
  37. Enable QEMU virtual instruction counter. The virtual cpu will
  38. execute one instruction every 2^N ns of virtual time. This will
  39. give deterministic execution times from the guest point of view.
  40. config QEMU_ICOUNT_SHIFT
  41. int "QEMU icount shift value"
  42. depends on QEMU_ICOUNT
  43. help
  44. The virtual CPU will execute one instruction every 2^N nanoseconds
  45. of virtual time, where N is the value provided here.
  46. config QEMU_IVSHMEM_PLAIN_MEM_SIZE
  47. int "QEMU ivshmem-plain shared memory size in mega-bytes"
  48. default 1
  49. depends on QEMU_TARGET && IVSHMEM && !IVSHMEM_DOORBELL
  50. help
  51. This sets the size of the shared memory when using ivshmem-plain
  52. device in Qemu. Note that it's in mega-bytes, so 1 means 1M for Qemu
  53. etc..
  54. config QEMU_UEFI_BOOT
  55. bool "QEMU uses UEFI to boot up"
  56. default n
  57. depends on BUILD_OUTPUT_EFI && QEMU_TARGET && X86_64
  58. help
  59. This option indicates that QEMU will use UEFI bootable method
  60. to boot up.
  61. # There might not be any board options, hence the optional source
  62. osource "$(BOARD_DIR)/Kconfig"
  63. endmenu
  64. config BOARD_HAS_TIMING_FUNCTIONS
  65. bool
  66. help
  67. Should be selected if board provides custom method for retrieving
  68. timestamps and cycle count.
  69. config BOARD_NANDBOOT
  70. bool "Board support NAND BOOT"
  71. default n
  72. help
  73. If you say yes here will get the support of nand boot.
  74. config BOARD_EMMCBOOT
  75. bool "Board support EMMC BOOT"
  76. default n
  77. help
  78. If you say yes here will get the support of emmc boot.