Merge "Fix the input parameter for "set_retry_bootloader_message""
This commit is contained in:
commit
0e60ccdc76
1 changed files with 13 additions and 13 deletions
12
recovery.cpp
12
recovery.cpp
|
@ -1304,16 +1304,16 @@ static bool is_battery_ok() {
|
|||
}
|
||||
}
|
||||
|
||||
static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
|
||||
static void set_retry_bootloader_message(int retry_count, const std::vector<std::string>& args) {
|
||||
std::vector<std::string> options;
|
||||
for (int i = 1; i < argc; ++i) {
|
||||
if (strstr(argv[i], "retry_count") == nullptr) {
|
||||
options.push_back(argv[i]);
|
||||
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));
|
||||
options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count + 1));
|
||||
std::string err;
|
||||
if (!update_bootloader_message(options, &err)) {
|
||||
LOG(ERROR) << err;
|
||||
|
@ -1534,7 +1534,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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue