summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2007-06-28 18:57:10 +0200
committerMichael Brown2007-06-28 18:57:10 +0200
commite4c9c91d6ee360d744e89924b90ffc4882a9ec22 (patch)
treec38afde7872502fc8901a8535b9fd27f59005a52 /src
parentQuick hack to get image booting working again (diff)
downloadipxe-e4c9c91d6ee360d744e89924b90ffc4882a9ec22.tar.gz
ipxe-e4c9c91d6ee360d744e89924b90ffc4882a9ec22.tar.xz
ipxe-e4c9c91d6ee360d744e89924b90ffc4882a9ec22.zip
Removed debugging statements that should not have been checked in.
Diffstat (limited to 'src')
-rw-r--r--src/hci/commands/image_cmd.c2
-rw-r--r--src/usr/imgmgmt.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/hci/commands/image_cmd.c b/src/hci/commands/image_cmd.c
index 4fe0ca9c2..2d35ebcb2 100644
--- a/src/hci/commands/image_cmd.c
+++ b/src/hci/commands/image_cmd.c
@@ -134,8 +134,6 @@ static int imgfetch_core_exec ( struct image_type *image_type, int load,
/* Fill in command line */
imgfill_cmdline ( image, ( argc - optind ), &argv[optind] );
- printf ( "name = %s, filename = %s\n", name, filename );
-
/* Fetch the image */
if ( ( rc = imgfetch ( image, filename, load ) ) != 0 ) {
printf ( "Could not fetch %s: %s\n", name, strerror ( rc ) );
diff --git a/src/usr/imgmgmt.c b/src/usr/imgmgmt.c
index df2519552..ab4897bf3 100644
--- a/src/usr/imgmgmt.c
+++ b/src/usr/imgmgmt.c
@@ -55,8 +55,6 @@ static int imgfetch_autoload ( struct image *image ) {
int imgfetch ( struct image *image, const char *uri_string, int load ) {
int rc;
- printf ( "uri_string = %s\n", uri_string );
-
if ( ( rc = create_downloader ( &monojob, image,
( load ? imgfetch_autoload :
register_image ),