reasonable output for cbfs loading..

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
This commit is contained in:
Stefan Reinauer 2009-10-26 17:15:53 +00:00 committed by Stefan Reinauer
parent aca6ec66bf
commit b4f3da5b14
1 changed files with 6 additions and 4 deletions

View 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;
}