Kconfig 579 B

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