summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2025-09-12 17:18:15 +0200
committerGravatar Nikias Bassen2025-09-12 17:18:15 +0200
commit8d1e798ea5578a110502c50d474c7b403f3a4579 (patch)
tree4252bacb77438bc107a4b83dd4a2eaffbdb2f255 /src
parente41ff993f7d4c4b9f18b63348eb232fb5c5aaae9 (diff)
downloadidevicerestore-8d1e798ea5578a110502c50d474c7b403f3a4579.tar.gz
idevicerestore-8d1e798ea5578a110502c50d474c7b403f3a4579.tar.bz2
Add SE,ChipID for M4
Diffstat (limited to 'src')
-rw-r--r--src/restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/restore.c b/src/restore.c
index 92abadb..f5403fc 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -2636,7 +2636,7 @@ static plist_t restore_get_se_firmware_data(struct idevicerestore_client_t* clie
}
if (chip_id == 0x20211) {
comp_name = "SE,Firmware";
- } else if (chip_id == 0x73 || chip_id == 0x64 || chip_id == 0xC8 || chip_id == 0xD2 || chip_id == 0x2C || chip_id == 0x36) {
+ } else if (chip_id == 0x73 || chip_id == 0x64 || chip_id == 0xC8 || chip_id == 0xD2 || chip_id == 0x2C || chip_id == 0x36 || chip_id == 0x37) {
comp_name = "SE,UpdatePayload";
} else {
logger(LL_WARNING, "Unknown SE,ChipID 0x%" PRIx64 " detected. Restore might fail.\n", (uint64_t)chip_id);