Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-04-12 | More code improvements using _plist_dict_copy_* helper | Nikias Bassen | 1 | -5/+1 | |
2022-04-12 | Use proper detection for macOS restore path (instead of version number ↵ | Nikias Bassen | 1 | -8/+4 | |
comparison) | |||||
2022-04-10 | Fix build identity selection for beta (developer) firmware | Nikias Bassen | 1 | -2/+2 | |
2022-04-10 | restore: Fixed a problem that nobody even knew existed | Nikias Bassen | 1 | -6/+10 | |
At least this has been going unnoticed until recently. For quite some time we have been sending NorImageData as array to the device, but it turned out that this was only expected for iOS < 7.0 and from then on it was supposed to be a dictionary with the components. Now we should correctly handle it. | |||||
2022-04-07 | tss/restore: Improve code readability with plist helpers and removal of ↵ | Nikias Bassen | 1 | -33/+8 | |
unneeded comments | |||||
2022-04-06 | Add support for Timer,* components and TSS found in iPad Air 5th gen firmware | Nikias Bassen | 1 | -0/+204 | |
2022-03-07 | restore: Use ECID instead of serial number in restore_is_current_device() to ↵ | Nikias Bassen | 1 | -14/+16 | |
match device Some devices seem to not provide serial number information in recovery or restore mode so we use ECID instead to make sure we deal with the same device. | |||||
2021-11-27 | Use macros for the different restore variant strings | Nikias Bassen | 1 | -3/+3 | |
2021-11-26 | Cache build manifest in client struct | Nikias Bassen | 1 | -8/+2 | |
2021-11-24 | restore: Use new reverse proxy implementation from latest libimobiledevice | Nikias Bassen | 1 | -0/+52 | |
with fallback to the legacy code with a compile time warning. The legacy code will be removed in the future once a newer libimobiledevice has been officially released. | |||||
2021-11-19 | Fix compilation on Windows | Nikias Bassen | 1 | -2/+2 | |
2021-11-17 | restore: Add missing newlines to info messages | Hector Martin | 1 | -2/+2 | |
Signed-off-by: Hector Martin <marcan@marcan.st> | |||||
2021-11-17 | restore: Support sending BootabilityBundle (Monterey) | Hector Martin | 1 | -0/+155 | |
This is used on macOS 12+ (Monterey and later) to allow older OSes to perform the bless2/bootability process for newer OSes, by putting a shared library in the Preboot partition that contains the specific logic required to make a given macOS install bootable. Closes: #441 Signed-off-by: Hector Martin <marcan@marcan.st> | |||||
2021-11-17 | idevicerestore: Identify build identity by Variant (Monterey) | Hector Martin | 1 | -3/+10 | |
Monterey got rid of VariantSupportsGlobalSigning. Identify builds based on the Variant field (which seems to always have consistent values) instead of using RestoreBehavior and VariantSupportsGlobalSigning. Signed-off-by: Hector Martin <marcan@marcan.st> | |||||
2021-10-26 | Add command line option to continue despite certain errors (e.g. baseband ↵ | Nikias Bassen | 1 | -0/+4 | |
update failure) | |||||
2021-10-01 | restore: Fix CheckpointMsg parsing for older firmware versions | Nikias Bassen | 1 | -5/+3 | |
Older firmware versions don't seem to always include CHECKPOINT_COMPLETE so we assume that state is false instead of aborting with an error. | |||||
2021-09-27 | restore: Add support for updating AppleTCON | Hector Martin | 1 | -0/+80 | |
Closes: #442 Co-authored-by: Nikias Bassen <nikias@gmx.li> Signed-off-by: Hector Martin <marcan@marcan.st> | |||||
2021-09-01 | Remove common code in favor of libimobiledevice-glue | Nikias Bassen | 1 | -2/+2 | |
2021-08-09 | restore: Set SupportedDataTypes and SupportedMessageTypes for ALL restore ↵ | Nikias Bassen | 1 | -2/+3 | |
variants/platforms | |||||
2021-06-29 | Make device mode specific code more consistent | Nikias Bassen | 1 | -11/+21 | |
2021-06-05 | restore: Error out if no matching build identity can be found | Nikias Bassen | 1 | -0/+4 | |
2021-06-05 | restore: macOS Update LocalPolicy must use the normal build identity | Benjamin BOURGEAIS | 1 | -1/+2 | |
2021-05-26 | restore: Silence compiler warnings | Nikias Bassen | 1 | -2/+2 | |
2021-05-11 | restore: Handle new data types requested by the restore process | Benjamin BOURGEAIS | 1 | -0/+514 | |
2021-05-08 | restore: Update the restore start request to match Apple Configurator 2 | Benjamin BOURGEAIS | 1 | -54/+174 | |
2021-05-08 | restore: Send NOR images as a dict for newer versions | Benjamin BOURGEAIS | 1 | -7/+17 | |
2021-03-17 | restore: Handle BasebandUpdaterOutputData | Nikias Bassen | 1 | -0/+74 | |
This seems to be sent only when the baseband update failed. | |||||
2020-10-27 | restore: Add SE,ChipID 0xD2 for iPhone 12 SE firmware | Nikias Bassen | 1 | -1/+1 | |
2020-10-27 | restore: Silence warning about EAN Data progress | Nikias Bassen | 1 | -0/+1 | |
2020-10-27 | restore: Add new baseband firmware file mapping for Mav20 basebands (iPhone 12) | Nikias Bassen | 1 | -0/+2 | |
2020-10-12 | restore: Fix NORData request by sending new components (fixes wireless ↵ | Nikias Bassen | 1 | -4/+19 | |
charging on newer devices) The NorImageData response didn't include the WCHFirmwareUpdater for newer devices, resulting in wireless charging capability to be broken on iPhone XS, iPhone XR, and newer. Upon further inspection it turned out that the selection for the images to send was only based on `IsFirmwarePayload` property. However, there are additional components with other properties, as the WCHFirmwareUpdater one, that don't have the `IsFirmwarePayload` property but instead `IsSecondaryFirmwarePayload` and `IsLoadedByiBoot` which seem to be the rule for including these images. | |||||
2020-09-16 | restore: Add some more restore progress steps | Nikias Bassen | 1 | -0/+15 | |
2020-07-09 | Fix 'Unable get path ...' error messages to say 'Unable to get path ...' | Nikias Bassen | 1 | -6/+6 | |
2020-06-24 | restore: Improve NORData error message | Nikias Bassen | 1 | -1/+1 | |
2020-06-23 | restore: Handle new PersonalizedData and EANData requests | Dany Lisiansky | 1 | -28/+52 | |
2020-06-23 | restore: Add support for SystemImageRootHash and ↵ | Nikias Bassen | 1 | -10/+27 | |
SystemImageCanonicalMetadata data requests | |||||
2020-06-08 | Remove trailing whitespace errors from all files | Martin Szulecki | 1 | -5/+4 | |
2020-04-20 | Use uint64_t and appropriate standard PRI* format specifiers everywhere | Nikias Bassen | 1 | -2/+2 | |
2020-04-18 | Use PATH_MAX for file sizes | Rosen Penev | 1 | -3/+4 | |
Fixes several -Wformat-truncation warnings. Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2020-04-12 | fix newly introduced format errors under 64-bit | Rosen Penev | 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 | Nikias Bassen | 1 | -4/+5 | |
2020-04-12 | Fix missing declaration warnings | Rosen Penev | 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 | Nikias Bassen | 1 | -32/+36 | |
2020-02-18 | Allow restores that start in Restore mode. Allow specification of custom ↵ | David Wang | 1 | -22/+67 | |
APTickets. | |||||
2019-10-11 | Use condition variable instead of active waiting for device event handling | Nikias Bassen | 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 | Nikias Bassen | 1 | -0/+11 | |
2019-09-25 | Use global event handlers for normale/restore and recovery/dfu mode devices | Nikias Bassen | 1 | -55/+38 | |
2019-09-25 | restore: Update progress messages and handle FUD progress | Nikias Bassen | 1 | -4/+43 | |
2019-09-25 | restore: Add support for Rose and Veridian firmware images | Nikias Bassen | 1 | -0/+244 | |
2019-09-25 | restore: Add ICE19 baseband firmware files to support newer devices | Nikias Bassen | 1 | -1/+4 | |