summaryrefslogtreecommitdiff
path: root/payloads
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2016-03-12 12:14:46 -0800
committerStefan Reinauer <stefan.reinauer@coreboot.org>2016-03-15 18:23:11 +0100
commit1e6b86b8b664e05f5b2672dce46fd2fec8a47c71 (patch)
tree14bec12dd94d3f813561b7302cbe7b4373cebf02 /payloads
parent8fda04449f5ff89af6fd2a7b1ca071806bc7def7 (diff)
downloadcoreboot-1e6b86b8b664e05f5b2672dce46fd2fec8a47c71.tar.xz
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> Reviewed-on: https://review.coreboot.org/14071 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/libpayload/Kconfig8
1 files changed, 4 insertions, 4 deletions
diff --git a/payloads/libpayload/Kconfig b/payloads/libpayload/Kconfig
index f2cb90a729..80df6f5c24 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