summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2020-05-29 23:52:11 +0200
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-29 23:52:11 +0200
commit941bf55f9d60f7946d4736858578135c50815447 (patch)
tree55508597d3bb8762c6ae39d2ef682c891357a851
parent[automerger skipped] Add EthernetDevice to manage ethernet connection. am: 4d0df88d88 -s ours (diff)
parentMerge "Use ro.build.fingerprint instead of ro.bootimage.*" am: d081fbceba (diff)
downloadandroid_bootable_recovery-941bf55f9d60f7946d4736858578135c50815447.tar
android_bootable_recovery-941bf55f9d60f7946d4736858578135c50815447.tar.gz
android_bootable_recovery-941bf55f9d60f7946d4736858578135c50815447.tar.bz2
android_bootable_recovery-941bf55f9d60f7946d4736858578135c50815447.tar.lz
android_bootable_recovery-941bf55f9d60f7946d4736858578135c50815447.tar.xz
android_bootable_recovery-941bf55f9d60f7946d4736858578135c50815447.tar.zst
android_bootable_recovery-941bf55f9d60f7946d4736858578135c50815447.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);