From aa25a29e1cf7bc81450a85fdc3320c48c2d95afb Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 20 Jun 2022 14:14:43 +0200 Subject: Remove more serial number checks, and get ECID early on in all modes Some devices seem to not have a serial number, usually in restore mode, which will cause the restore operation to fail since we specifically check for it. An earlier commit already removed the actual comparison in favor of comparing the ECID, but some checks would still result in restore failures as it can't retrieve the serial number on said devices at all. This commit also makes sure to get the ECID in all modes as early as possible and removes all the helper functions for it since they are not needed anymore. --- src/normal.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/normal.h') diff --git a/src/normal.h b/src/normal.h index f438f9b..85464db 100644 --- a/src/normal.h +++ b/src/normal.h @@ -35,7 +35,6 @@ extern "C" { int normal_check_mode(struct idevicerestore_client_t* client); irecv_device_t normal_get_irecv_device(struct idevicerestore_client_t* client); int normal_enter_recovery(struct idevicerestore_client_t* client); -int normal_get_ecid(struct idevicerestore_client_t* client, uint64_t* ecid); int normal_is_image4_supported(struct idevicerestore_client_t* client); int normal_get_ap_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); int normal_get_sep_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); -- cgit v1.1-32-gdbae