2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-11-23 18:10:10 +00:00

Remove ipxe dl protocol for esxi purposes

This commit is contained in:
Jarrod Johnson 2014-03-28 16:08:26 -04:00
parent 2b28f60b4d
commit cdcaf713aa

View File

@ -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 );
@ -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;