Update Coreinfo to use TAG_FORWARD in tables.
Update the ramdump function cursor functions and make the address hex
instead of decimal

Signed-off-by: Myles Watson <[email protected]>

Thanks,
Myles
Index: svn/coreboot_module.c
===================================================================
--- svn.orig/coreboot_module.c
+++ svn/coreboot_module.c
@@ -203,6 +203,9 @@ static int parse_header(void *addr, int 
 		struct cb_record *rec = (struct cb_record *)ptr;
 
 		switch (rec->tag) {
+		case CB_TAG_FORWARD:
+			return parse_header((void *)(unsigned long)((struct cb_forward *)rec)->forward, 1);
+			break;
 		case CB_TAG_MEMORY:
 			parse_memory(ptr);
 			break;
Index: svn/ramdump_module.c
===================================================================
--- svn.orig/ramdump_module.c
+++ svn/ramdump_module.c
@@ -34,7 +34,7 @@ static void dump_ram(WINDOW *win, uint32
 	int i, x = 0, y = 0, count = 0;
 	volatile uint8_t *ptr = (void *)(addr);
 
-	mvwprintw(win, 0, col + 54, "RAM address: %10d", addr);
+	mvwprintw(win, 0, col + 54, "RAM address: %10x", addr);
 
 	/* Dump 256 bytes of RAM. */
 	for (i = 1; i < 257; i++) {
@@ -68,23 +68,21 @@ static int ramdump_module_handle(int key
 {
 	switch (key) {
 	case KEY_DOWN:
-		if (cursor == cursor_max)
-			return 0;
 		cursor++;
 		break;
 	case KEY_UP:
-		if (cursor == 0)
-			return 0;
 		cursor--;
 		break;
-	case KEY_NPAGE:
-		if (cursor == cursor_max)
-			return 0;
-		cursor += 4096; /* Jump in 1MB steps. */
+	case KEY_RIGHT:
+		cursor += 256;
+		break;
+	case KEY_LEFT:
+		cursor -= 256;
 		break;
 	case KEY_PPAGE:
-		if (cursor == 0)
-			return 0;
+		cursor += 4096; /* Jump in 1MB steps. */
+		break;
+	case KEY_NPAGE:
 		cursor -= 4096; /* Jump in 1MB steps. */
 		break;
 	}
-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to