Skip to content

Commit

Permalink
Remove ipxe dl protocol for esxi purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarrod Johnson committed Mar 28, 2014
1 parent 2b28f60 commit cdcaf71
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/image/efi_image.c
Expand Up @@ -185,12 +185,12 @@ static int efi_image_exec ( struct image *image ) {
goto err_file_install;
}

/* Install iPXE download protocol */
/* Install iPXE download protocol
if ( ( rc = efi_download_install ( &nethandle ) ) != 0 ) {
DBGC ( image, "EFIIMAGE %p could not install iPXE download "
"protocol: %s\n", image, strerror ( rc ) );
goto err_download_install;
}
} */

/* Create device path for image */
path = efi_image_path ( image, netpath );
Expand Down Expand Up @@ -271,8 +271,9 @@ static int efi_image_exec ( struct image *image ) {
free ( path );
err_image_path:
efi_download_uninstall ( nethandle );
err_download_install:
/* err_download_install:
efi_file_uninstall ( nethandle );
*/
err_file_install:
err_no_snpdev:
return rc;
Expand Down

0 comments on commit cdcaf71

Please sign in to comment.