diff options
author | Jiyong Park <jiyong@google.com> | 2020-05-29 03:01:52 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-05-29 03:01:52 +0200 |
commit | d081fbceba5995bc13187e8de13ac8176ae80dd9 (patch) | |
tree | 7e41d03cdc6a8fc210c9cd0d85092b6450d81702 /recovery.cpp | |
parent | Merge changes from topic "nonab_pkg" (diff) | |
parent | Use ro.build.fingerprint instead of ro.bootimage.* (diff) | |
download | android_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.cpp | 2 |
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); |