From e4762be790b53dbd9ed679233584b8ee14d7c36f Mon Sep 17 00:00:00 2001 From: Nicolas Haunold Date: Wed, 9 Feb 2011 00:53:25 +0100 Subject: Verizon iPhone support --- libirecovery.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'libirecovery.c') diff --git a/libirecovery.c b/libirecovery.c index c186f41..a323386 100644 --- a/libirecovery.c +++ b/libirecovery.c @@ -1151,7 +1151,7 @@ irecv_error_t irecv_get_device(irecv_client_t client, irecv_device_t* device) { break; case CPID_IPAD1G: - // iPhone3,1 iPad4,1 and iPad1,1 all share the same ChipID + // iPhone3,1 iPhone3,3 iPad4,1 and iPad1,1 all share the same ChipID // so we need to check the BoardID if (irecv_get_bdid(client, &bdid) < 0) { break; @@ -1174,6 +1174,10 @@ irecv_error_t irecv_get_device(irecv_client_t client, irecv_device_t* device) { device_id = DEVICE_APPLETV2; break; + case BDID_IPHONE42: + device_id = DEVICE_IPHONE42; + break; + default: device_id = DEVICE_UNKNOWN; break; -- cgit v1.1-32-gdbae