summaryrefslogtreecommitdiffstats
path: root/src/restore.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2019-01-16 03:17:43 +0100
committerGravatar Nikias Bassen2019-01-16 03:17:43 +0100
commitfe2afea8aa5988f7c2d7027caa1817dc61da6ec3 (patch)
tree6bd3e1b990c02facd5fbf31bb5cd1e170055e1d0 /src/restore.c
parentb4af2e2d79d11c0cb6869d111ae7eca02c9e5c0b (diff)
downloadidevicerestore-fe2afea8aa5988f7c2d7027caa1817dc61da6ec3.tar.gz
idevicerestore-fe2afea8aa5988f7c2d7027caa1817dc61da6ec3.tar.bz2
restore: Add support for newer SEP firmware (Chip ID 0x64)
Diffstat (limited to 'src/restore.c')
-rw-r--r--src/restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/restore.c b/src/restore.c
index 2043324..6d5d808 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -1808,7 +1808,7 @@ plist_t restore_get_se_firmware_data(restored_client_t restore, struct idevicere
}
if (chip_id == 0x20211) {
comp_name = "SE,Firmware";
- } else if (chip_id == 0x73) {
+ } else if (chip_id == 0x73 || chip_id == 0x64) {
comp_name = "SE,UpdatePayload";
} else {
error("ERROR: Neither 'SE,Firmware' nor 'SE,UpdatePayload' found in build identity.\n");