diff options
author | Rudolf Tammekivi | 2018-08-28 12:37:44 +0300 |
---|---|---|
committer | Rudolf Tammekivi | 2018-08-28 12:46:14 +0300 |
commit | 5b0eafc634c294f9c85c7aa756d8f2e2970484c9 (patch) | |
tree | 1c0cdc908510b08aa0691fbf99ffcb7e4d8c0064 /src/img4.c | |
parent | 7173addac2c2702968c4f942d05b163177548f91 (diff) | |
download | idevicerestore-5b0eafc634c294f9c85c7aa756d8f2e2970484c9.tar.gz idevicerestore-5b0eafc634c294f9c85c7aa756d8f2e2970484c9.tar.bz2 |
restore: Add personalization tag for AppleLogo
Diffstat (limited to 'src/img4.c')
-rw-r--r-- | src/img4.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -164,6 +164,8 @@ int img4_stitch_component(const char* component_name, const unsigned char* compo memcpy((void*)tag, "rdtr", 4); } else if (strcmp(component_name, "RestoreSEP") == 0) { memcpy((void*)tag, "rsep", 4); + } else if (strcmp(component_name, "AppleLogo") == 0) { + memcpy((void*)tag, "rlgo", 4); } } |