summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-11-17 00:35:28 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-11-17 00:35:28 +0100
commitb22bd959e5721f2ccde59e63e842e0cb7a3336fb (patch)
tree23d2558804bca7a3d79eedf192f2fabe55b9b16f
parentMerge "switch to using android-base/file.h instead of android-base/test_utils.h" (diff)
parentlogical -> dynamic partitions. (diff)
downloadandroid_bootable_recovery-b22bd959e5721f2ccde59e63e842e0cb7a3336fb.tar
android_bootable_recovery-b22bd959e5721f2ccde59e63e842e0cb7a3336fb.tar.gz
android_bootable_recovery-b22bd959e5721f2ccde59e63e842e0cb7a3336fb.tar.bz2
android_bootable_recovery-b22bd959e5721f2ccde59e63e842e0cb7a3336fb.tar.lz
android_bootable_recovery-b22bd959e5721f2ccde59e63e842e0cb7a3336fb.tar.xz
android_bootable_recovery-b22bd959e5721f2ccde59e63e842e0cb7a3336fb.tar.zst
android_bootable_recovery-b22bd959e5721f2ccde59e63e842e0cb7a3336fb.zip
-rw-r--r--recovery_main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/recovery_main.cpp b/recovery_main.cpp
index 19ef4f3d0..6f5080238 100644
--- a/recovery_main.cpp
+++ b/recovery_main.cpp
@@ -365,7 +365,7 @@ int main(int argc, char** argv) {
if (option == "locale") {
locale = optarg;
} else if (option == "fastboot" &&
- android::base::GetBoolProperty("ro.boot.logical_partitions", false)) {
+ android::base::GetBoolProperty("ro.boot.dynamic_partitions", false)) {
fastboot = true;
}
break;
@@ -426,7 +426,7 @@ int main(int argc, char** argv) {
device->RemoveMenuItemForAction(Device::WIPE_CACHE);
}
- if (!android::base::GetBoolProperty("ro.boot.logical_partitions", false)) {
+ if (!android::base::GetBoolProperty("ro.boot.dynamic_partitions", false)) {
device->RemoveMenuItemForAction(Device::ENTER_FASTBOOT);
}