reasonable output for cbfs loading..
authorStefan Reinauer <stepan@coresystems.de>
Mon, 26 Oct 2009 17:15:53 +0000 (17:15 +0000)
committerStefan Reinauer <stepan@openbios.org>
Mon, 26 Oct 2009 17:15:53 +0000 (17:15 +0000)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4862 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/lib/cbfs.c

index 780d69f4882f1e2740c50a8d9fe96705e7137c74..876f6352e0d3400c2b1e21ce39352b84c3cac647 100644 (file)
@@ -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;
 }