From fe2afea8aa5988f7c2d7027caa1817dc61da6ec3 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 16 Jan 2019 03:17:43 +0100 Subject: restore: Add support for newer SEP firmware (Chip ID 0x64) --- src/restore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/restore.c') 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"); -- cgit v1.1-32-gdbae