Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-04-12 | fix newly introduced format errors under 64-bit | 1 | -2/+1 | ||
uint64_t should be used. Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2020-04-13 | restore: Fix several format string compiler warnings | 1 | -4/+5 | ||
2020-04-12 | Fix missing declaration warnings | 1 | -10/+10 | ||
Allows better compilation by the compiler. | |||||
2020-04-12 | restore: Don't fail when Rap,RestoreRTKitOS entry is missing from build identity | 1 | -32/+36 | ||
2020-02-18 | Allow restores that start in Restore mode. Allow specification of custom ↵ | 1 | -22/+67 | ||
APTickets. | |||||
2019-10-11 | Use condition variable instead of active waiting for device event handling | 1 | -1/+5 | ||
With some devices and USB hardware the reconnect of a device might actually be faster than the check interval of the active waiting loop. With mutexes and a condition variable we will not miss the moment of reconnect anymore, even if it is really quick (like 7ms, right DanyL?) | |||||
2019-09-26 | restore: Only use timeout error if it is actually defined | 1 | -0/+11 | ||
2019-09-25 | Use global event handlers for normale/restore and recovery/dfu mode devices | 1 | -55/+38 | ||
2019-09-25 | restore: Update progress messages and handle FUD progress | 1 | -4/+43 | ||
2019-09-25 | restore: Add support for Rose and Veridian firmware images | 1 | -0/+244 | ||
2019-09-25 | restore: Add ICE19 baseband firmware files to support newer devices | 1 | -1/+4 | ||
2019-09-25 | restore: Suppress SE,ChipID warning for new iPhone 11 Pro when handling SE ↵ | 1 | -1/+1 | ||
firmware | |||||
2019-09-25 | restore: Use new way to handle FUD firmware images (if supported) | 1 | -37/+89 | ||
2019-02-14 | restore: Silence two ERROR messages that are not really errors | 1 | -2/+2 | ||
2019-02-14 | Use uint64_t instead of off_t for win32/MinGW compatibility | 1 | -1/+1 | ||
2019-02-14 | Allow .ipsw files or extracted IPSW as source | 1 | -2/+4 | ||
2019-01-25 | restore: Move Yonkers component selection code to tss_request_add_yonkers_tags() | 1 | -78/+25 | ||
2019-01-24 | restore: Fix Savage firmware handling for iPhone XR/XS/XS max | 1 | -30/+30 | ||
2019-01-23 | thread: Silence two compiler warnings | 1 | -1/+1 | ||
2019-01-23 | Replace tempnam() with mkstemp() and provide reference implementation for ↵ | 1 | -5/+8 | ||
systems lacking it | |||||
2019-01-16 | restore: Add TZ0RequiredCapacity to restore options to fix iPhone8/8+ boot ↵ | 1 | -0/+14 | ||
loop issue | |||||
2019-01-16 | restore/tss: Add support for Yonkers firmware data and TSS request | 1 | -1/+146 | ||
2019-01-16 | restore: Add fallback SE,* component selection for unknown SE,ChipIDs | 1 | -2/+10 | ||
2019-01-16 | restore: Add support for newer SEP firmware (Chip ID 0x64) | 1 | -1/+1 | ||
2019-01-16 | restore: Avoid using get_component_name() when getting manifest from build ↵ | 1 | -18/+30 | ||
identity | |||||
2018-05-19 | restore: Send ReceivedFinalStatusMsg when restore succeeds as restored is ↵ | 1 | -0/+4 | ||
expecting it This prevents a delay of about 10 seconds at the final stage of the restore process. | |||||
2018-04-27 | Decide what to do when updating SE firmware based on chip ID | 1 | -3/+7 | ||
This should be more accurate than guessing based on what is in the build identity and avoid doing unexpected things for unknown hardware. | |||||
2018-04-27 | restore: Remove unused variables | 1 | -2/+0 | ||
2017-12-10 | restore: Only print info about other detected devices in debug mode | 1 | -1/+1 | ||
2017-11-13 | Remove a comma from array initialiser which some compilers don't like | 1 | -1/+1 | ||
2017-11-13 | Change check_hardware_model() to get_irecv_device() | 1 | -5/+2 | ||
The check_hardware_model() function has a misleading name. It returns a string with the hardware model but this is not used. Instead, this function is only called for its side effect to initialise an irecv device in the passed client struct which it creates from the hardware model name returned by mode specific implementations. But these mode specific implementations already create an irecv device to get the hardware model name so instead of going through this unnecessary complication just return the irecv device directly and rename the function accordingly to make this clear. (This may also prevent leaking an irecv device in the mode specific functions.) | |||||
2017-11-14 | Fix Savage firmware updating for FaceID (iPhone X) | 1 | -0/+13 | ||
While the restore was succeeding, FaceID wasn't available on the device. It turned out that the Savage Firmware data sent to the device requires a simple header that we didn't send along. | |||||
2017-11-06 | Add support for Savage firmware updating (found in iPhone X) | 1 | -7/+101 | ||
2017-11-05 | restore: Prevent crash in fdr_disconnect() when exiting unexpectedly | 1 | -4/+4 | ||
2017-09-29 | restore: Fix restore of iPhone 8/8+ SE firmware | 1 | -1/+10 | ||
2017-09-28 | Invert return value of build_identity_has_component() | 1 | -2/+2 | ||
2017-06-08 | restore: Add previously missing DeviceTree data request handling | 1 | -0/+7 | ||
2017-06-08 | restore: Move restore_send_kernelcache() to a generic restore_send_component() | 1 | -13/+15 | ||
2017-04-07 | restore: Fix a use-after-free | 1 | -2/+3 | ||
Also fixing the string length of the affected strncmp. Credit to Mällon Lobjakas | |||||
2017-02-21 | restore: Add support for 10.3+ firmware images (ipsw) | 1 | -14/+73 | ||
Starting with iOS 10.3 the ipsw files don't contain any 'manifest' file anymore which we used to determine the files required for the reply to the 'NorData' request. Since this info is also included in the BuildManifest we us that instead, unless a 'manifest' file is present. | |||||
2017-02-07 | Remove some unneded variables and conditionals and plug some potential ↵ | 1 | -74/+48 | ||
memory leaks | |||||
2017-02-07 | Use udid as temp file name prefix to make it more unique and avoid race ↵ | 1 | -1/+1 | ||
conditions when tempnam generated name is not random enough. | |||||
2016-09-30 | restore: Add support for FirmwareUpdaterData request used for Secure Element ↵ | 1 | -0/+167 | ||
firmware | |||||
2016-09-23 | restore: Make sure newer Mav16 baseband firmware image files are recognized | 1 | -1/+2 | ||
The iPhone 7/7+ models with Mav16 baseband failed to restore as the baseband firmware files are now called RestoreSBL1-HastTableDigest and SBL1-HashTableDigest. The code only stripped off the '-Blob' part from the baseband tss response so it couldn't match the firmware filenames properly. This commit fixes the issue by only keeping the first part of the string (everything before the first occurance of '-'). | |||||
2016-09-22 | Add support for ICE16 baseband firmware files (iPhone 7/7+) | 1 | -1/+8 | ||
While not tested, the new Mav16 baseband firmware files should also work with this update. | |||||
2016-07-08 | restore: Fix error message to show the actual baseband component name | 1 | -2/+2 | ||
2016-06-26 | restore: Explicitly stop FDR thread to suppress error messages at the end of ↵ | 1 | -0/+8 | ||
the restore | |||||
2016-06-26 | restore: Fix restore mode status/progress messages | 1 | -63/+135 | ||
2016-06-26 | restore: Add support for FUD data request, required for iOS 10 | 1 | -0/+89 | ||
2015-10-09 | restore: Always enable reverse proxy, some newer devices (iPad Air) require ↵ | 1 | -16/+9 | ||
it for iOS 9+ |