mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 09:11:56 +00:00
"-machine type=pc-0.14" appears to be the option which leads to broken PCI emulation in QEMU, where PCI enumeration reports one IRQ number (11), while actually IRQ 10 is emulated by QEMU. "-vga none" and "-display none" appear to be just subordinate of "-machine type=pc-0.14" and are required to get qemu_x86 into bootable state. Fixes: #11706 Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
21 lines
399 B
CMake
21 lines
399 B
CMake
set(EMU_PLATFORM qemu)
|
|
|
|
if(NOT CONFIG_REBOOT)
|
|
set(REBOOT_FLAG -no-reboot)
|
|
endif()
|
|
|
|
set(QEMU_CPU_TYPE_${ARCH} qemu32,+nx,+pae)
|
|
set(QEMU_FLAGS_${ARCH}
|
|
-m 8
|
|
-cpu ${QEMU_CPU_TYPE_${ARCH}}
|
|
-device isa-debug-exit,iobase=0xf4,iosize=0x04
|
|
${REBOOT_FLAG}
|
|
-nographic
|
|
-no-acpi
|
|
)
|
|
|
|
# TODO: Support debug
|
|
# set(BOARD_DEBUG_RUNNER qemu)
|
|
# debugserver: QEMU_EXTRA_FLAGS += -s -S
|
|
# debugserver: qemu
|