summaryrefslogtreecommitdiff
path: root/payloads/coreinfo/coreinfo.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-07-08 16:18:38 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-07-08 16:18:38 +0000
commit2fbbb29e54ee6a28461ea130e02eeee2984edb22 (patch)
tree8662718bddb5a012615cae5079256a43c1fcf233 /payloads/coreinfo/coreinfo.c
parenta4793182e892c71660e24dbe12198a653f7ec1e6 (diff)
downloadcoreboot-2fbbb29e54ee6a28461ea130e02eeee2984edb22.tar.xz
Add a coreinfo module which can hexdump arbitrary RAM regions and
allows you to scroll through the RAM contents. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3419 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/coreinfo/coreinfo.c')
-rw-r--r--payloads/coreinfo/coreinfo.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c
index 99a3baa71e..3f49f53ef2 100644
--- a/payloads/coreinfo/coreinfo.c
+++ b/payloads/coreinfo/coreinfo.c
@@ -29,6 +29,7 @@ extern struct coreinfo_module pci_module;
extern struct coreinfo_module coreboot_module;
extern struct coreinfo_module nvram_module;
extern struct coreinfo_module bootlog_module;
+extern struct coreinfo_module ramdump_module;
extern struct coreinfo_module lar_module;
struct coreinfo_module *system_modules[] = {
@@ -41,6 +42,9 @@ struct coreinfo_module *system_modules[] = {
#ifdef CONFIG_MODULE_NVRAM
&nvram_module,
#endif
+#ifdef CONFIG_MODULE_RAMDUMP
+ &ramdump_module,
+#endif
};
struct coreinfo_module *coreboot_modules[] = {