From 064daea982e92d425a574b20088f445d2091d582 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 2 Oct 2023 18:59:43 +0200 Subject: restore: Add new SE,ChipID 0x36 to list of known values --- 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 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); -- cgit v1.1-32-gdbae