summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-08-22 03:48:58 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-08-22 03:48:58 +0200
commit0115b79cbd7eaba1dcbbd6e3183fd2aec8446546 (patch)
treecfc5079f407074caa2d4976894edff3b6939e401
parentMerge "Depend on mke2fs.conf.recovery." (diff)
parentrecovery: Add "boot-fastboot" command to BCB. (diff)
downloadandroid_bootable_recovery-0115b79cbd7eaba1dcbbd6e3183fd2aec8446546.tar
android_bootable_recovery-0115b79cbd7eaba1dcbbd6e3183fd2aec8446546.tar.gz
android_bootable_recovery-0115b79cbd7eaba1dcbbd6e3183fd2aec8446546.tar.bz2
android_bootable_recovery-0115b79cbd7eaba1dcbbd6e3183fd2aec8446546.tar.lz
android_bootable_recovery-0115b79cbd7eaba1dcbbd6e3183fd2aec8446546.tar.xz
android_bootable_recovery-0115b79cbd7eaba1dcbbd6e3183fd2aec8446546.tar.zst
android_bootable_recovery-0115b79cbd7eaba1dcbbd6e3183fd2aec8446546.zip
-rw-r--r--recovery_main.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/recovery_main.cpp b/recovery_main.cpp
index 99f965098..020a5314f 100644
--- a/recovery_main.cpp
+++ b/recovery_main.cpp
@@ -97,8 +97,13 @@ static std::vector<std::string> get_args(const int argc, char** const argv) {
}
stage = std::string(boot.stage);
+ std::string boot_command;
if (boot.command[0] != 0) {
- std::string boot_command = std::string(boot.command, sizeof(boot.command));
+ if (memchr(boot.command, '\0', sizeof(boot.command))) {
+ boot_command = std::string(boot.command);
+ } else {
+ boot_command = std::string(boot.command, sizeof(boot.command));
+ }
LOG(INFO) << "Boot command: " << boot_command;
}
@@ -149,6 +154,12 @@ static std::vector<std::string> get_args(const int argc, char** const argv) {
LOG(ERROR) << "Failed to set BCB message: " << err;
}
+ // Finally, if no arguments were specified, check whether we should boot
+ // into fastboot.
+ if (args.size() == 1 && boot_command == "boot-fastboot") {
+ args.emplace_back("--fastboot");
+ }
+
return args;
}