summaryrefslogtreecommitdiffstats
path: root/src/restore.c
diff options
context:
space:
mode:
authorGravatar Clément Decoodt2023-07-25 18:02:07 +0200
committerGravatar Clément Decoodt2023-07-25 18:02:07 +0200
commita3515134e1be6596d8a3775d6210085056885a0d (patch)
tree65b91143c104de33dd4dadd616066ebdb5bdec30 /src/restore.c
parentda22dd466548a776a62208e060017aa6cdc2df52 (diff)
downloadidevicerestore-a3515134e1be6596d8a3775d6210085056885a0d.tar.gz
idevicerestore-a3515134e1be6596d8a3775d6210085056885a0d.tar.bz2
Add SE,ChipID 0x2C
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 486ffb5..2fd0ad1 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -2123,7 +2123,7 @@ static plist_t restore_get_se_firmware_data(restored_client_t restore, struct id
}
if (chip_id == 0x20211) {
comp_name = "SE,Firmware";
- } else if (chip_id == 0x73 || chip_id == 0x64 || chip_id == 0xC8 || chip_id == 0xD2) {
+ } else if (chip_id == 0x73 || chip_id == 0x64 || chip_id == 0xC8 || chip_id == 0xD2 || chip_id == 0x2C) {
comp_name = "SE,UpdatePayload";
} else {
info("WARNING: Unknown SE,ChipID 0x%" PRIx64 " detected. Restore might fail.\n", (uint64_t)chip_id);