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

boards: x86: enable MULTIBOOT_MEMMAP



QEMU provides multiboot information by default so we can
use the provided memory map to mark reserved physical
memory. Note that 64-bit requires Multiboot2 which
currently both Zephyr and QEMU do not support, hence
it's not enabled for qemu_x86_64.

Signed-off-by: default avatarDaniel Leung <daniel.leung@intel.com>
parent 32b70bb7
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -15,6 +15,15 @@ config FLASH_SIMULATOR
config KERNEL_VM_SIZE
	default 0x10000000 if ACPI

config MULTIBOOT
	default y

config MULTIBOOT_INFO
	default y if MULTIBOOT

config MULTIBOOT_MEMMAP
	default y if MULTIBOOT

endif # BOARD_QEMU_X86

if BOARD_QEMU_X86_64