Kconfig 484 B

1234567891011121314151617181920212223242526272829
  1. if TARGET_QEMU_X86 || TARGET_QEMU_X86_64
  2. config SYS_BOARD
  3. default "qemu-x86"
  4. config SYS_VENDOR
  5. default "emulation"
  6. config SYS_SOC
  7. default "qemu"
  8. config SYS_CONFIG_NAME
  9. default "qemu-x86"
  10. config SYS_TEXT_BASE
  11. default 0xfff00000 if !SUPPORT_SPL
  12. default 0x01110000 if SUPPORT_SPL
  13. config BOARD_SPECIFIC_OPTIONS # dummy
  14. def_bool y
  15. select X86_RESET_VECTOR
  16. select QEMU
  17. select QFW_PIO
  18. select BOARD_ROMSIZE_KB_1024
  19. imply VIRTIO_PCI
  20. imply VIRTIO_NET
  21. imply VIRTIO_BLK
  22. endif