From b4f3da5b143f5bc63f9bfd5332e557998d4d39af Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Mon, 26 Oct 2009 17:15:53 +0000 Subject: [PATCH] reasonable output for cbfs loading.. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4862 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/lib/cbfs.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/lib/cbfs.c b/src/lib/cbfs.c index 780d69f48..876f6352e 100644 --- a/src/lib/cbfs.c +++ b/src/lib/cbfs.c @@ -88,7 +88,7 @@ struct cbfs_file *cbfs_find(const char *name) while(1) { struct cbfs_file *file = (struct cbfs_file *) offset; if (!cbfs_check_magic(file)) return NULL; - printk_debug("Check %s\n", CBFS_NAME(file)); + printk_spew("Check %s\n", CBFS_NAME(file)); if (!strcmp(CBFS_NAME(file), name)) return file; @@ -187,7 +187,7 @@ void * cbfs_load_stage(const char *name) if (stage == NULL) return (void *) -1; - printk_info("Stage: load %s @ %d/%d bytes, enter @ %llx\n", + printk_info("Stage: loading %s @ 0x%x (%d bytes), entry @ 0x%llx\n", name, (u32) stage->load, stage->memlen, stage->entry); @@ -199,10 +199,12 @@ void * cbfs_load_stage(const char *name) (void *) (u32) stage->load, stage->len)) return (void *) -1; - printk_info("Stage: done loading.\n"); + + printk_debug("Stage: done loading.\n"); entry = stage->entry; -// return (void *) ntohl((u32) stage->entry); + // entry = ntohl((u32) stage->entry); + return (void *) entry; } -- 2.25.1