From 961077074cf4f113d685ce19f3e0b18d343a74d6 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sat, 8 Oct 2022 21:15:18 +0200 Subject: recovery: Send bootx with bRequest set to 1 for all platforms --- src/recovery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.1-32-gdbae