Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14071
-gerrit
commit c8a81af36dcd3c7bd1607ae30f39a4aaaedf80bd Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Sat Mar 12 12:14:46 2016 -0800
libpayload: Move MEMMAP_RAM_ONLY to generic options
MEMMAP_RAM_ONLY is not an architecture specific option, hence move it out of the architecture specific menu.
Change-Id: Iaeef03ed8cbff930a580ad03b1e712087b48714e Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org --- payloads/libpayload/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/payloads/libpayload/Kconfig b/payloads/libpayload/Kconfig index ef452ac..3c579e6 100644 --- a/payloads/libpayload/Kconfig +++ b/payloads/libpayload/Kconfig @@ -80,6 +80,10 @@ config REMOTEGDB help Enable Remote GDB debugging support.
+config MEMMAP_RAM_ONLY + bool "Only consider RAM entries in memory map for further processing" + default n + endmenu
menu "Architecture Options" @@ -110,10 +114,6 @@ config ARCH_MIPS
endchoice
-config MEMMAP_RAM_ONLY - bool "Only consider RAM entries in memory map for further processing" - default n - config MULTIBOOT bool "Multiboot header support" depends on ARCH_X86