diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-07-08 16:18:38 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-07-08 16:18:38 +0000 |
commit | 2fbbb29e54ee6a28461ea130e02eeee2984edb22 (patch) | |
tree | 8662718bddb5a012615cae5079256a43c1fcf233 /payloads/coreinfo/Makefile | |
parent | a4793182e892c71660e24dbe12198a653f7ec1e6 (diff) | |
download | coreboot-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/Makefile')
-rw-r--r-- | payloads/coreinfo/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile index 8528ef805b..403eb56e16 100644 --- a/payloads/coreinfo/Makefile +++ b/payloads/coreinfo/Makefile @@ -51,7 +51,8 @@ AS = $(LIBPAYLOAD_DIR)/bin/lpas INCLUDES = -Ibuild CFLAGS := -Wall -Werror -Os $(INCLUDES) OBJECTS = cpuinfo_module.o cpuid.S.o pci_module.o coreboot_module.o \ - nvram_module.o bootlog_module.o lar_module.o coreinfo.o + nvram_module.o bootlog_module.o ramdump_module.o lar_module.o \ + coreinfo.o OBJS = $(patsubst %,$(obj)/%,$(OBJECTS)) TARGET = $(obj)/coreinfo.elf |