Config.in.host 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. config BR2_PACKAGE_HOST_QEMU_ARCH_SUPPORTS
  2. bool
  3. default y if BR2_arm
  4. default y if BR2_armeb
  5. default y if BR2_aarch64
  6. default y if BR2_i386
  7. default y if BR2_m68k
  8. default y if BR2_microblazeel
  9. default y if BR2_microblazebe
  10. default y if BR2_mips
  11. default y if BR2_mipsel
  12. default y if BR2_nios2
  13. default y if BR2_or1k
  14. default y if BR2_powerpc
  15. default y if BR2_powerpc64
  16. default y if BR2_powerpc64le
  17. default y if BR2_riscv
  18. default y if BR2_s390x
  19. default y if BR2_sh
  20. default y if BR2_sparc
  21. default y if BR2_sparc64
  22. default y if BR2_xtensa
  23. default y if BR2_x86_64
  24. depends on !BR2_x86_steamroller && !BR2_x86_core_avx2
  25. depends on !BR2_powerpc_620 && !BR2_powerpc_630 && !BR2_powerpc_970
  26. config BR2_PACKAGE_HOST_QEMU_SYSTEM_ARCH_SUPPORTS
  27. bool
  28. default y if BR2_PACKAGE_HOST_QEMU_ARCH_SUPPORTS
  29. default y if BR2_mips64
  30. default y if BR2_mips64el
  31. config BR2_PACKAGE_HOST_QEMU_USER_ARCH_SUPPORTS
  32. bool
  33. default y if BR2_PACKAGE_HOST_QEMU_ARCH_SUPPORTS
  34. config BR2_PACKAGE_HOST_QEMU
  35. bool "host qemu"
  36. depends on BR2_PACKAGE_HOST_QEMU_SYSTEM_ARCH_SUPPORTS || BR2_PACKAGE_HOST_QEMU_USER_ARCH_SUPPORTS
  37. select BR2_PACKAGE_HOST_QEMU_LINUX_USER_MODE \
  38. if !BR2_PACKAGE_HOST_QEMU_SYSTEM_MODE && BR2_PACKAGE_HOST_QEMU_USER_ARCH_SUPPORTS
  39. select BR2_PACKAGE_HOST_QEMU_SYSTEM_MODE \
  40. if !BR2_PACKAGE_HOST_QEMU_USER_ARCH_SUPPORTS
  41. help
  42. QEMU is a generic and open source machine emulator and
  43. virtualizer.
  44. This option builds an emulator for your selected architecture.
  45. http://www.qemu.org
  46. if BR2_PACKAGE_HOST_QEMU
  47. comment "Emulators selection"
  48. config BR2_PACKAGE_HOST_QEMU_SYSTEM_MODE
  49. bool "Enable system emulation"
  50. depends on BR2_PACKAGE_HOST_QEMU_SYSTEM_ARCH_SUPPORTS
  51. help
  52. Enables the build of the system emulator, which allows to
  53. boot an entire system in Qemu.
  54. config BR2_PACKAGE_HOST_QEMU_LINUX_USER_MODE
  55. bool "Enable Linux user-land emulation"
  56. depends on BR2_PACKAGE_HOST_QEMU_USER_ARCH_SUPPORTS
  57. help
  58. Enables the build of the user-land emulator, which allows to
  59. run user-space applications.
  60. Note that system calls made by the emulated user-land are
  61. serviced by the running host kernel. Therefore, if the
  62. kernel headers used by your target are more recent than
  63. the running host kernel, you may run into invalid system
  64. calls, which may yield surprising effects.
  65. config BR2_PACKAGE_HOST_QEMU_VDE2
  66. bool "VDE2 support"
  67. help
  68. Enables VDE2 support. VDE2 stands for Virtual Distributed
  69. Ethernet and can be used to create virtual switches to
  70. "plug" both physical and virtual machines in them.
  71. config BR2_PACKAGE_HOST_QEMU_VIRTFS
  72. bool "Virtual filesystem support"
  73. help
  74. Enables support for virtual filesystem in Qemu allowing
  75. shared filesystem between Qemu and its emulated target.
  76. config BR2_PACKAGE_HOST_QEMU_USB
  77. bool "USB passthrough support"
  78. help
  79. Enables USB passthrough support from guest to host.
  80. endif