summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2020-05-29 03:01:52 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-05-29 03:01:52 +0200
commitd081fbceba5995bc13187e8de13ac8176ae80dd9 (patch)
tree7e41d03cdc6a8fc210c9cd0d85092b6450d81702 /recovery.cpp
parentMerge changes from topic "nonab_pkg" (diff)
parentUse ro.build.fingerprint instead of ro.bootimage.* (diff)
downloadandroid_bootable_recovery-d081fbceba5995bc13187e8de13ac8176ae80dd9.tar
android_bootable_recovery-d081fbceba5995bc13187e8de13ac8176ae80dd9.tar.gz
android_bootable_recovery-d081fbceba5995bc13187e8de13ac8176ae80dd9.tar.bz2
android_bootable_recovery-d081fbceba5995bc13187e8de13ac8176ae80dd9.tar.lz
android_bootable_recovery-d081fbceba5995bc13187e8de13ac8176ae80dd9.tar.xz
android_bootable_recovery-d081fbceba5995bc13187e8de13ac8176ae80dd9.tar.zst
android_bootable_recovery-d081fbceba5995bc13187e8de13ac8176ae80dd9.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index b1f106b1c..e02bc726e 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);