Skip to content

Commit

Permalink
Support iPad mini (A17 Pro)
Browse files Browse the repository at this point in the history
adds full support for the iPad mini (A17 Pro) models, and also blacklists them for noNonce since they also throw a 456.
  • Loading branch information
DanTheMann15 committed Oct 23, 2024
1 parent 29b6c74 commit 73f173d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tsschecker/tsschecker.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@ static struct bbdevice bbdevices[] = {
{"iPad11,2", 165673526, 12}, // iPad mini (5th gen, Cellular)
{"iPad14,1", 0, 0}, // iPad mini (6th gen, Wi-Fi)
{"iPad14,2", 495958265, 4}, // iPad mini (6th gen, Cellular)
{"iPad16,1", 0, 0}, // iPad mini (A17 Pro, Wi-Fi)
{"iPad16,2", 3452763205, 4}, // iPad mini (A17 Pro, Cellular)

// iPad Airs
{"iPad4,1", 0, 0}, // iPad Air (Wi-Fi)
Expand Down Expand Up @@ -1327,6 +1329,7 @@ int isManifestBufSignedForDevice(char *buildManifestBuffer, t_devicevals *devVal
|| !strcasecmp(devVals->deviceModel, "iPad4,8") || !strcasecmp(devVals->deviceModel, "iPad4,9")
|| !strcasecmp(devVals->deviceModel, "iPad5,1") || !strcasecmp(devVals->deviceModel, "iPad5,2")
|| !strcasecmp(devVals->deviceModel, "iPad5,3") || !strcasecmp(devVals->deviceModel, "iPad5,4")
|| !strcasecmp(devVals->deviceModel, "iPad16,1") || !strcasecmp(devVals->deviceModel, "iPad16,2")
|| !strcasecmp(devVals->deviceModel, "iPad16,3") || !strcasecmp(devVals->deviceModel, "iPad16,4")
|| !strcasecmp(devVals->deviceModel, "iPad16,5") || !strcasecmp(devVals->deviceModel, "iPad16,6")
|| !strcasecmp(devVals->deviceModel, "Appletv5,3") || !strcasecmp(devVals->deviceModel, "Appletv6,2")
Expand Down

0 comments on commit 73f173d

Please sign in to comment.