]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
Add debug message
authorMichael Brown <mcb30@etherboot.org>
Fri, 12 Jan 2007 08:57:51 +0000 (08:57 +0000)
committerMichael Brown <mcb30@etherboot.org>
Fri, 12 Jan 2007 08:57:51 +0000 (08:57 +0000)
src/core/image.c

index ce69c8a3c536d3f767ac6f90f73b850cfa0d2de9..be0eecf98e78b76264284b4b9c594fa02884d127 100644 (file)
@@ -136,6 +136,7 @@ int image_autoload ( struct image *image ) {
        int rc;
 
        for ( type = image_types ; type < image_types_end ; type++ ) {
+               DBGC ( image, "IMAGE %p trying type %s\n", image, type->name );
                rc = type->load ( image );
                if ( image->type == NULL )
                        continue;