diff options
author | Tianjie Xu <xunchang@google.com> | 2017-05-17 03:07:31 +0200 |
---|---|---|
committer | Tianjie Xu <xunchang@google.com> | 2017-05-17 20:52:17 +0200 |
commit | 539b08cfcf223cea2be6713c5357643d45e6b70d (patch) | |
tree | 7787861cebb3fe75c554341cf23cf6bff51089fd /recovery.cpp | |
parent | Adding support for quiescent reboot to recovery (diff) | |
download | android_bootable_recovery-539b08cfcf223cea2be6713c5357643d45e6b70d.tar android_bootable_recovery-539b08cfcf223cea2be6713c5357643d45e6b70d.tar.gz android_bootable_recovery-539b08cfcf223cea2be6713c5357643d45e6b70d.tar.bz2 android_bootable_recovery-539b08cfcf223cea2be6713c5357643d45e6b70d.tar.lz android_bootable_recovery-539b08cfcf223cea2be6713c5357643d45e6b70d.tar.xz android_bootable_recovery-539b08cfcf223cea2be6713c5357643d45e6b70d.tar.zst android_bootable_recovery-539b08cfcf223cea2be6713c5357643d45e6b70d.zip |
Diffstat (limited to 'recovery.cpp')
-rw-r--r-- | recovery.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/recovery.cpp b/recovery.cpp index 173baac16..30edaa57b 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -1305,20 +1305,20 @@ static bool is_battery_ok() { } } -static void set_retry_bootloader_message(int retry_count, int argc, char** argv) { - std::vector<std::string> options; - for (int i = 1; i < argc; ++i) { - if (strstr(argv[i], "retry_count") == nullptr) { - options.push_back(argv[i]); - } +static void set_retry_bootloader_message(int retry_count, const std::vector<std::string>& args) { + std::vector<std::string> options; + for (const auto& arg : args) { + if (!android::base::StartsWith(arg, "--retry_count")) { + options.push_back(arg); } + } - // Increment the retry counter by 1. - options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1)); - std::string err; - if (!update_bootloader_message(options, &err)) { - LOG(ERROR) << err; - } + // Increment the retry counter by 1. + options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count + 1)); + std::string err; + if (!update_bootloader_message(options, &err)) { + LOG(ERROR) << err; + } } static bool bootreason_in_blacklist() { @@ -1535,7 +1535,7 @@ int main(int argc, char **argv) { // times before we abandon this OTA update. if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) { copy_logs(); - set_retry_bootloader_message(retry_count, argc, argv); + set_retry_bootloader_message(retry_count, args); // Print retry count on screen. ui->Print("Retry attempt %d\n", retry_count); |