From: Michael Brown Date: Fri, 12 Jan 2007 16:20:51 +0000 (+0000) Subject: Print image physical location in registration message. X-Git-Tag: v0.9.3~634 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c72d9c4e043dbb3a090dc844944471be96f78b4;p=thirdparty%2Fipxe.git Print image physical location in registration message. --- diff --git a/src/core/image.c b/src/core/image.c index 6f54be115..b5ef7c592 100644 --- a/src/core/image.c +++ b/src/core/image.c @@ -58,7 +58,9 @@ int register_image ( struct image *image ) { /* Add to image list */ list_add_tail ( &image->list, &images ); - DBGC ( image, "IMAGE %p registered as %s\n", image, image->name ); + DBGC ( image, "IMAGE %p at [%lx,%lx) registered as %s\n", + image, user_to_phys ( image->data, 0 ), + user_to_phys ( image->data, image->len ), image->name ); return 0; }