summaryrefslogtreecommitdiffstats
path: root/src/core/image.c
diff options
context:
space:
mode:
authorMichael Brown2007-01-12 09:57:51 +0100
committerMichael Brown2007-01-12 09:57:51 +0100
commiteba3609e7fbdac3eb186eea48b58aa215472a734 (patch)
tree3c5cef02d41582f2e722d0ee2ef170eee1bfb82b /src/core/image.c
parentIgnore comment lines. (diff)
downloadipxe-eba3609e7fbdac3eb186eea48b58aa215472a734.tar.gz
ipxe-eba3609e7fbdac3eb186eea48b58aa215472a734.tar.xz
ipxe-eba3609e7fbdac3eb186eea48b58aa215472a734.zip
Add debug message
Diffstat (limited to 'src/core/image.c')
-rw-r--r--src/core/image.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/image.c b/src/core/image.c
index ce69c8a3..be0eecf9 100644
--- a/src/core/image.c
+++ b/src/core/image.c
@@ -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;