diff options
author | Nikias Bassen | 2024-03-21 01:31:48 +0100 |
---|---|---|
committer | Nikias Bassen | 2024-03-21 01:31:48 +0100 |
commit | d3198a50e51674e0ec19284f44f4aeb027d160a3 (patch) | |
tree | e6b33b0757ba9ed14e5fcafb67bb83e62990138f /tools | |
parent | b55d215c25fd415b49430dc3c8423dde7d8f12aa (diff) | |
download | libirecovery-d3198a50e51674e0ec19284f44f4aeb027d160a3.tar.gz libirecovery-d3198a50e51674e0ec19284f44f4aeb027d160a3.tar.bz2 |
Add support for Port DFU
Note: This does not allow restoring devices in Port DFU mode, this is
handled in idevicerestore.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/irecovery.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/irecovery.c b/tools/irecovery.c index 6303b55..955d3ca 100644 --- a/tools/irecovery.c +++ b/tools/irecovery.c @@ -90,6 +90,9 @@ static const char* mode_to_str(int mode) case IRECV_K_DFU_MODE: return "DFU"; break; + case IRECV_K_PORT_DFU_MODE: + return "Port DFU"; + break; case IRECV_K_WTF_MODE: return "WTF"; break; |