diff options
author | Nikias Bassen | 2019-09-25 02:59:36 +0200 |
---|---|---|
committer | Nikias Bassen | 2019-09-25 02:59:36 +0200 |
commit | c85edc6974f54e9c54379f6211a4fe61c7a77bc5 (patch) | |
tree | a01797c8372bcd3d3f93b6cb9452253f551fa13b /src | |
parent | f0a7b58e2c82c5290ab567e2d61ecbac00f13a12 (diff) | |
download | idevicerestore-c85edc6974f54e9c54379f6211a4fe61c7a77bc5.tar.gz idevicerestore-c85edc6974f54e9c54379f6211a4fe61c7a77bc5.tar.bz2 |
restore: Add ICE19 baseband firmware files to support newer devices
Diffstat (limited to 'src')
-rw-r--r-- | src/restore.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/restore.c b/src/restore.c index bdb2883..52a4eb9 100644 --- a/src/restore.c +++ b/src/restore.c @@ -1175,6 +1175,9 @@ static const char* restore_get_bbfw_fn_for_element(const char* elem) // ICE16 firmware files { "RestorePSI", "restorepsi.bin" }, { "PSI", "psi_ram.bin" }, + // ICE19 firmware files + { "RestorePSI2", "restorepsi2.bin" }, + { "PSI2", "psi_ram2.bin" }, { NULL, NULL } }; @@ -2191,7 +2194,7 @@ int restore_send_firmware_updater_data(restored_client_t restore, struct idevice goto error_out; } } else { - error("ERROR: %s: Got unknown updater name '%s'.", __func__, s_updater_name); + error("ERROR: %s: Got unknown updater name '%s'.\n", __func__, s_updater_name); goto error_out; } free(s_updater_name); |