Skip to content

Commit 73f173d

Browse files
committed
Support iPad mini (A17 Pro)
adds full support for the iPad mini (A17 Pro) models, and also blacklists them for noNonce since they also throw a 456.
1 parent 29b6c74 commit 73f173d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tsschecker/tsschecker.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,8 @@ static struct bbdevice bbdevices[] = {
295295
{"iPad11,2", 165673526, 12}, // iPad mini (5th gen, Cellular)
296296
{"iPad14,1", 0, 0}, // iPad mini (6th gen, Wi-Fi)
297297
{"iPad14,2", 495958265, 4}, // iPad mini (6th gen, Cellular)
298+
{"iPad16,1", 0, 0}, // iPad mini (A17 Pro, Wi-Fi)
299+
{"iPad16,2", 3452763205, 4}, // iPad mini (A17 Pro, Cellular)
298300

299301
// iPad Airs
300302
{"iPad4,1", 0, 0}, // iPad Air (Wi-Fi)
@@ -1327,6 +1329,7 @@ int isManifestBufSignedForDevice(char *buildManifestBuffer, t_devicevals *devVal
13271329
|| !strcasecmp(devVals->deviceModel, "iPad4,8") || !strcasecmp(devVals->deviceModel, "iPad4,9")
13281330
|| !strcasecmp(devVals->deviceModel, "iPad5,1") || !strcasecmp(devVals->deviceModel, "iPad5,2")
13291331
|| !strcasecmp(devVals->deviceModel, "iPad5,3") || !strcasecmp(devVals->deviceModel, "iPad5,4")
1332+
|| !strcasecmp(devVals->deviceModel, "iPad16,1") || !strcasecmp(devVals->deviceModel, "iPad16,2")
13301333
|| !strcasecmp(devVals->deviceModel, "iPad16,3") || !strcasecmp(devVals->deviceModel, "iPad16,4")
13311334
|| !strcasecmp(devVals->deviceModel, "iPad16,5") || !strcasecmp(devVals->deviceModel, "iPad16,6")
13321335
|| !strcasecmp(devVals->deviceModel, "Appletv5,3") || !strcasecmp(devVals->deviceModel, "Appletv6,2")

0 commit comments

Comments
 (0)