diff options
author | Rudolf Tammekivi | 2019-01-16 02:58:08 +0100 |
---|---|---|
committer | Nikias Bassen | 2019-01-16 02:58:08 +0100 |
commit | 42c675111ca66513f3d4b1c9d0a97b1576fa0de6 (patch) | |
tree | c752e772e518757a389e76ee45b603b9bfed017a | |
parent | 2bab69ab0e71c04e9747c2cf567f2a93ed40e3a3 (diff) | |
download | idevicerestore-42c675111ca66513f3d4b1c9d0a97b1576fa0de6.tar.gz idevicerestore-42c675111ca66513f3d4b1c9d0a97b1576fa0de6.tar.bz2 |
img4: Add personalization tag for RestoreTrustCache
-rw-r--r-- | src/img4.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -166,6 +166,8 @@ int img4_stitch_component(const char* component_name, const unsigned char* compo memcpy((void*)tag, "rsep", 4); } else if (strcmp(component_name, "RestoreLogo") == 0) { memcpy((void*)tag, "rlgo", 4); + } else if (strcmp(component_name, "RestoreTrustCache") == 0) { + memcpy((void*)tag, "rtsc", 4); } } |