From 8d1e798ea5578a110502c50d474c7b403f3a4579 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 12 Sep 2025 17:18:15 +0200 Subject: Add SE,ChipID for M4 --- src/restore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.1-32-gdbae