Show
Ignore:
Timestamp:
07/08/08 18:18:38 (5 months ago)
Author:
uwe
Message:

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@…>
Acked-by: Peter Stuge <peter@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/payloads/coreinfo/coreinfo.c

    r3371 r3419  
    3030extern struct coreinfo_module nvram_module; 
    3131extern struct coreinfo_module bootlog_module; 
     32extern struct coreinfo_module ramdump_module; 
    3233extern struct coreinfo_module lar_module; 
    3334 
     
    4142#ifdef CONFIG_MODULE_NVRAM 
    4243        &nvram_module, 
     44#endif 
     45#ifdef CONFIG_MODULE_RAMDUMP 
     46        &ramdump_module, 
    4347#endif 
    4448};