summaryrefslogtreecommitdiffstats
path: root/src/restore.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-10-02 18:59:43 +0200
committerGravatar Nikias Bassen2023-10-02 18:59:43 +0200
commit064daea982e92d425a574b20088f445d2091d582 (patch)
tree6ece9e51fe669291c80d0bd877ebab438dbbcd7b /src/restore.c
parentca76f44bdda73cb69e3c67f85718656e96b2d56f (diff)
downloadidevicerestore-064daea982e92d425a574b20088f445d2091d582.tar.gz
idevicerestore-064daea982e92d425a574b20088f445d2091d582.tar.bz2
restore: Add new SE,ChipID 0x36 to list of known values
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 1b246f8..05ff5af 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -2166,7 +2166,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 || chip_id == 0x2C) {
+ } else if (chip_id == 0x73 || chip_id == 0x64 || chip_id == 0xC8 || chip_id == 0xD2 || chip_id == 0x2C || chip_id == 0x36) {
comp_name = "SE,UpdatePayload";
} else {
info("WARNING: Unknown SE,ChipID 0x%" PRIx64 " detected. Restore might fail.\n", (uint64_t)chip_id);