mirror of
https://github.com/ipxe/ipxe
synced 2025-12-11 14:03:29 +03:00
Removed debugging statements that should not have been checked in.
This commit is contained in:
@@ -134,8 +134,6 @@ static int imgfetch_core_exec ( struct image_type *image_type, int load,
|
|||||||
/* Fill in command line */
|
/* Fill in command line */
|
||||||
imgfill_cmdline ( image, ( argc - optind ), &argv[optind] );
|
imgfill_cmdline ( image, ( argc - optind ), &argv[optind] );
|
||||||
|
|
||||||
printf ( "name = %s, filename = %s\n", name, filename );
|
|
||||||
|
|
||||||
/* Fetch the image */
|
/* Fetch the image */
|
||||||
if ( ( rc = imgfetch ( image, filename, load ) ) != 0 ) {
|
if ( ( rc = imgfetch ( image, filename, load ) ) != 0 ) {
|
||||||
printf ( "Could not fetch %s: %s\n", name, strerror ( rc ) );
|
printf ( "Could not fetch %s: %s\n", name, strerror ( rc ) );
|
||||||
|
|||||||
@@ -55,8 +55,6 @@ static int imgfetch_autoload ( struct image *image ) {
|
|||||||
int imgfetch ( struct image *image, const char *uri_string, int load ) {
|
int imgfetch ( struct image *image, const char *uri_string, int load ) {
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
printf ( "uri_string = %s\n", uri_string );
|
|
||||||
|
|
||||||
if ( ( rc = create_downloader ( &monojob, image,
|
if ( ( rc = create_downloader ( &monojob, image,
|
||||||
( load ? imgfetch_autoload :
|
( load ? imgfetch_autoload :
|
||||||
register_image ),
|
register_image ),
|
||||||
|
|||||||
Reference in New Issue
Block a user