Commit fbdf518c authored by Daniel Leung's avatar Daniel Leung Committed by Anas Nashif
Browse files

x86: qemu: add -no-acpi to QEMU if CONFIG_ACPI=n



Tell QEMU not to use ACPI if CONFIG_ACPI=n. This gives
us back 128K at the end of memory.

Signed-off-by: default avatarDaniel Leung <daniel.leung@intel.com>
parent b275fec8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -27,6 +27,10 @@ set(QEMU_FLAGS_${ARCH}
  -nographic
  )

if(NOT CONFIG_ACPI)
  list(APPEND QEMU_FLAGS_${ARCH} -no-acpi)
endif()

# TODO: Support debug
# board_set_debugger_ifnset(qemu)
# debugserver: QEMU_EXTRA_FLAGS += -s -S