summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-07-14Refactor tss request requirements to work with iPhone 3G and iOS 4Gravatar Martin Szulecki4-17/+27
This gets rid of the device model checking code and allows devices like the iPhone 3G to get shsh blobs as required by iOS 4. The requirement if the components need to be signed is determined by which kind of manifest filename is within the IPSW.
2010-07-14Add and improve some comments for restore processGravatar Martin Szulecki2-1/+5
2010-07-14Take setup for autoboot out of the ibec sending codeGravatar Martin Szulecki1-23/+24
2010-07-14Extend sleep timeouts to allow the device to loadGravatar Martin Szulecki1-2/+5
2010-07-14Allow getting the ecid for any device modelGravatar Martin Szulecki1-5/+0
2010-07-12Be more verbose when reporting about each step of the restore processGravatar Martin Szulecki1-3/+3
2010-07-09Correctly check when to send the NORDataGravatar Martin Szulecki1-1/+3
2010-07-09Fix typo in nor data messageGravatar Martin Szulecki1-1/+1
2010-07-09Only debug a plist if debugging flag was setGravatar Martin Szulecki2-6/+15
2010-07-09Add more known progress messages and report themGravatar Martin Szulecki1-1/+12
2010-07-09Add more known status messages and report themGravatar Martin Szulecki1-2/+20
2010-07-09Try five times to retrieve validation plist if it failedGravatar Martin Szulecki1-3/+12
This fixes hanging as the following payload message is not received initially but after polling the second time.
2010-07-09Rename some variables and functions to fit thier contextGravatar Martin Szulecki2-13/+13
2010-07-09Remove leftover of extract_manifest helperGravatar Martin Szulecki1-23/+0
2010-07-09Correctly set QUIT flag during restoreGravatar Martin Szulecki1-3/+3
2010-07-09Refactor filesystem extractionGravatar Martin Szulecki2-3/+3
2010-07-09Fix idevice handle being NULL which leads to failure to connect to ASRGravatar Martin Szulecki1-0/+1
2010-07-09Fix crash due to not passing client handle for callback as userdataGravatar Martin Szulecki1-1/+1
2010-07-09Refactor manifest extractionGravatar Martin Szulecki4-2/+25
2010-07-09Add helper functions to dump information from a manifest of the IPSWGravatar Martin Szulecki2-0/+75
2010-07-09Correctly assign the client flags from command lineGravatar Martin Szulecki1-4/+4
2010-07-09Implement handling of devices which do not require a tss requestGravatar Martin Szulecki8-125/+184
This introduces passing around the "selected" build identity and fixes code logic issues to make idevicerestore work again.
2010-07-09Add function to retrieve a component path from a build identityGravatar Martin Szulecki2-22/+44
2010-07-09Implement handling unknown img3 element for 8900 chip devicesGravatar Martin Szulecki2-1/+25
2010-07-09Set and use static idevicerestore_debug flag for debug outputGravatar Martin Szulecki1-1/+2
2010-07-08Remove get_build_name() which was not working and has no real useGravatar Martin Szulecki2-18/+0
2010-07-08Do not attempt to open another recovery session if one existsGravatar Martin Szulecki1-4/+8
2010-07-08Fix segfault due to broken retrieval of board idGravatar Martin Szulecki1-4/+4
2010-07-08Improve error message if a device mode can not be determinedGravatar Martin Szulecki1-1/+1
Most of the time it means that there is no device attached as we should be able to detect any mode of a device.
2010-07-08Remove activation code, this will be handled by the ideviceactivate toolGravatar Martin Szulecki4-323/+2
We already handle the complex restore process, let's avoid the trouble to add up the activation complexity additionally.
2010-07-08Fix segfault and handling of cli argumentsGravatar Martin Szulecki1-5/+5
2010-07-08Do not depend on device model to extract correct buildmanifestGravatar Martin Szulecki1-14/+13
Since the iOS 4 IPSW contains a BuildManifest.plist even for devices that do not require personal signing, the prior code logic would fail.
2010-07-08Use debug_plist in tss code and remove redundant codeGravatar Martin Szulecki1-10/+2
2010-07-08Do not report the detected device mode twiceGravatar Martin Szulecki1-4/+0
2010-06-22Small change to make the program use irecovery command functions rather then ↵Gravatar Joshua Hill1-1/+2
duplicating them
2010-06-22Added info for iPhone4 and fixed a few runtime errorsGravatar Joshua Hill3-3/+15
2010-06-21Update TODOGravatar Joshua Hill1-6/+13
2010-06-21Fixed a few more compile errors, everything should compile fine now, but i'm ↵Gravatar Joshua Hill4-71/+7
not sure if it will run yet
2010-06-21Finally fixed the out of control problemGravatar Joshua Hill12-174/+221
2010-06-21Archived for historical reasonsGravatar Joshua Hill20-419/+839
2010-06-20fixed a few build errors within buildmanifest parsingGravatar Joshua Hill2-8/+9
2010-06-08started to add support multiple build identitiesGravatar Joshua Hill3-11/+59
2010-06-08ooops, should of tested that last commit before pushingGravatar Joshua Hill1-2/+3
2010-06-08Added debug info for recovery.c and a few minor fixes to asr.cGravatar Joshua Hill3-47/+68
2010-06-08forgot to update the asr.c file headerGravatar Joshua Hill1-2/+2
2010-06-08Added a new asr.c file to stick all stuff related to filesystem and abstract ↵Gravatar Joshua Hill9-297/+601
the restore process to allow for easier porting
2010-06-07More small fixes and updated the TODO listGravatar Joshua Hill4-23/+29
2010-06-07I really need to put more descriptive messages here, but im doing stuff all ↵Gravatar Joshua Hill5-7/+35
over the place
2010-06-05Changed the device type to a structure array for cleaner code and cross ↵Gravatar Joshua Hill7-113/+194
state access
2010-06-05Added long options and moved the function main source file function ↵Gravatar Joshua Hill2-27/+51
declarations into the header file for easier maintainance