diff options
author | Nikias Bassen | 2022-10-08 21:15:18 +0200 |
---|---|---|
committer | Nikias Bassen | 2022-10-08 21:15:18 +0200 |
commit | 961077074cf4f113d685ce19f3e0b18d343a74d6 (patch) | |
tree | 7a99a1bc98d29ffad31e49cd2a979b88bb383e15 /src | |
parent | 4e46f12b52207cae9a4733e72534a1309870351b (diff) | |
download | idevicerestore-961077074cf4f113d685ce19f3e0b18d343a74d6.tar.gz idevicerestore-961077074cf4f113d685ce19f3e0b18d343a74d6.tar.bz2 |
recovery: Send bootx with bRequest set to 1 for all platforms
Diffstat (limited to 'src')
-rw-r--r-- | src/recovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recovery.c b/src/recovery.c index 24d0c3d..59cce62 100644 --- a/src/recovery.c +++ b/src/recovery.c @@ -498,7 +498,7 @@ int recovery_send_kernelcache(struct idevicerestore_client_t* client, plist_t bu recovery_error = irecv_send_command(client->recovery->client, setba); } - recovery_error = irecv_send_command_breq(client->recovery->client, "bootx", client->macos_variant ? 1 : 0); + recovery_error = irecv_send_command_breq(client->recovery->client, "bootx", 1); if (recovery_error != IRECV_E_SUCCESS) { error("ERROR: Unable to execute %s\n", component); return -1; |