Kconfig 797 B

123456789101112131415161718192021222324252627282930
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  4. if VENDOR_EMULATION
  5. choice
  6. prompt "Mainboard model"
  7. config TARGET_QEMU_X86
  8. bool "QEMU x86"
  9. help
  10. This is the QEMU emulated x86 board. U-Boot supports running
  11. as a coreboot payload as well as bare boot without coreboot.
  12. There are two types of x86 boards supported by QEMU which are
  13. supported by U-Boot. They are via QEMU '-M pc', an i440FX/PIIX
  14. chipset platform and '-M q35', a Q35/ICH9 chipset platform.
  15. config TARGET_QEMU_X86_64
  16. bool "QEMU x86 64-bit"
  17. help
  18. This is the QEMU emulated x86 64-bit board. With this config
  19. U-Boot is built as a 64-bit binary. This allows testing while
  20. this feature is being completed.
  21. endchoice
  22. source "board/emulation/qemu-x86/Kconfig"
  23. endif