I went to libimobiledevice.h added:
int AMDeviceEnterRecovery(am_device_t am_device);
LIBMD_API void libmd_enter_recovery();
went to libimobiledevice.cpp :
void libmd_enter_recovery()
{
AMDeviceEnterRecovery(target_device);
}
went to main.cpp :
switch (g_programMode) {
case MODE_ENTER:
printf("Entering recovery..");
libmd_enter_recovery();
printf("Successfully Entered");
break;
}
but still does not enter recovery.
Original issue reported on code.google.com by iSn0wra...@gmail.com on 27 Feb 2011 at 10:52
Original issue reported on code.google.com by
iSn0wra...@gmail.com
on 27 Feb 2011 at 10:52