summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHridya Valsaraju <hridya@google.com>2018-09-24 22:07:55 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-09-24 22:07:55 +0200
commit4e30d0d6874296e733b65210ca626f0d85d8d4dd (patch)
tree3097d45168b65d735e73f91fc40b7dc740155d9f
parentMerge "Refactor update_verifier into a class" (diff)
parentMerge "Enter into userspace fastboot only if the device supports it" (diff)
downloadandroid_bootable_recovery-4e30d0d6874296e733b65210ca626f0d85d8d4dd.tar
android_bootable_recovery-4e30d0d6874296e733b65210ca626f0d85d8d4dd.tar.gz
android_bootable_recovery-4e30d0d6874296e733b65210ca626f0d85d8d4dd.tar.bz2
android_bootable_recovery-4e30d0d6874296e733b65210ca626f0d85d8d4dd.tar.lz
android_bootable_recovery-4e30d0d6874296e733b65210ca626f0d85d8d4dd.tar.xz
android_bootable_recovery-4e30d0d6874296e733b65210ca626f0d85d8d4dd.tar.zst
android_bootable_recovery-4e30d0d6874296e733b65210ca626f0d85d8d4dd.zip
-rw-r--r--recovery_main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/recovery_main.cpp b/recovery_main.cpp
index 29a5865a2..78350944c 100644
--- a/recovery_main.cpp
+++ b/recovery_main.cpp
@@ -364,7 +364,8 @@ int main(int argc, char** argv) {
std::string option = OPTIONS[option_index].name;
if (option == "locale") {
locale = optarg;
- } else if (option == "fastboot") {
+ } else if (option == "fastboot" &&
+ android::base::GetBoolProperty("ro.boot.logical_partitions", false)) {
fastboot = true;
}
break;