diff options
author | Nikias Bassen | 2023-10-02 15:21:38 +0200 |
---|---|---|
committer | Nikias Bassen | 2023-10-02 15:21:38 +0200 |
commit | c96f60b8cf4cee0d8a861bf1a924f0f240e04b07 (patch) | |
tree | 5c2a85988cab9ff38b727b58bac47da04e2e3808 /src | |
parent | cf22a1c0fa5994be2f02ed431461524499b06267 (diff) | |
download | idevicerestore-c96f60b8cf4cee0d8a861bf1a924f0f240e04b07.tar.gz idevicerestore-c96f60b8cf4cee0d8a861bf1a924f0f240e04b07.tar.bz2 |
restore: Handle SepStage1 (SEPPatchImageData) in NORImageData
Diffstat (limited to 'src')
-rw-r--r-- | src/restore.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/restore.c b/src/restore.c index c1dd92d..0fea6e3 100644 --- a/src/restore.c +++ b/src/restore.c @@ -1396,6 +1396,31 @@ int restore_send_nor(restored_client_t restore, struct idevicerestore_client_t* personalized_size = 0; } + if (build_identity_has_component(build_identity, "SepStage1") && + build_identity_get_component_path(build_identity, "SepStage1", &sep_path) == 0) { + component = "SepStage1"; + ret = extract_component(client->ipsw, sep_path, &component_data, &component_size); + free(sep_path); + if (ret < 0) { + error("ERROR: Unable to extract component: %s\n", component); + return -1; + } + + ret = personalize_component(component, component_data, component_size, client->tss, &personalized_data, &personalized_size); + free(component_data); + component_data = NULL; + component_size = 0; + if (ret < 0) { + error("ERROR: Unable to get personalized component: %s\n", component); + return -1; + } + + plist_dict_set_item(dict, "SEPPatchImageData", plist_new_data((char*)personalized_data, (uint64_t) personalized_size)); + free(personalized_data); + personalized_data = NULL; + personalized_size = 0; + } + if (idevicerestore_debug) debug_plist(dict); |