summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2020-05-30 00:25:52 +0200
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-30 00:25:52 +0200
commit5709fd73e3241003424c7d656eb8375dc258050d (patch)
tree728951f479300ce97f72dfc2ddd07a8ef96c4b61
parentMerge "[automerger skipped] Add EthernetDevice to manage ethernet connection. am: 4d0df88d88 am: b3cd9fad22 am: 3eac3fed78 -s ours" into rvc-qpr-dev-plus-aosp am: 197342a0ac -s ours (diff)
parentMerge "Use ro.build.fingerprint instead of ro.bootimage.*" am: d081fbceba am: fb9d4fc54b am: 941bf55f9d am: bfa93a9472 (diff)
downloadandroid_bootable_recovery-5709fd73e3241003424c7d656eb8375dc258050d.tar
android_bootable_recovery-5709fd73e3241003424c7d656eb8375dc258050d.tar.gz
android_bootable_recovery-5709fd73e3241003424c7d656eb8375dc258050d.tar.bz2
android_bootable_recovery-5709fd73e3241003424c7d656eb8375dc258050d.tar.lz
android_bootable_recovery-5709fd73e3241003424c7d656eb8375dc258050d.tar.xz
android_bootable_recovery-5709fd73e3241003424c7d656eb8375dc258050d.tar.zst
android_bootable_recovery-5709fd73e3241003424c7d656eb8375dc258050d.zip
-rw-r--r--recovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 7675121d4..df13835be 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -702,7 +702,7 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri
}
std::vector<std::string> title_lines =
- android::base::Split(android::base::GetProperty("ro.bootimage.build.fingerprint", ""), ":");
+ android::base::Split(android::base::GetProperty("ro.build.fingerprint", ""), ":");
title_lines.insert(std::begin(title_lines), "Android Recovery");
ui->SetTitle(title_lines);