diff options
author | Nolen Johnson <johnsonnolen@gmail.com> | 2020-02-12 00:03:01 +0000 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-01-29 00:06:32 +0800 |
commit | 05cb10e194db5ac3cdfb07c32e78787b571affb6 (patch) | |
tree | 6c06166b0749f880024230832044a120973d802f | |
parent | 6d7595b84435d39c3d0f9417c1e7453c6bd953b0 (diff) |
recovery: Mark as Project ICE Recovery
* So many users think they accidetally restored the stock
Recovery right now, as we haven't brough our custom UI
up yet. Make it easier to discern.
Change-Id: Ifce302ee77b4f97b324005d5102aa15b5589b3d3
-rw-r--r-- | recovery.cpp | 4 | ||||
-rw-r--r-- | recovery_ui/include/recovery_ui/screen_ui.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/recovery.cpp b/recovery.cpp index 134a80d7..41585d04 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -794,8 +794,8 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri } std::vector<std::string> title_lines = - android::base::Split(android::base::GetProperty("ro.build.fingerprint", ""), ":"); - title_lines.insert(std::begin(title_lines), "Android Recovery"); + android::base::Split(android::base::GetProperty("ro.ice.version", ""), ":"); + title_lines.insert(std::begin(title_lines), "Project ICE Recovery"); ui->SetTitle(title_lines); ui->ResetKeyInterruptStatus(); diff --git a/recovery_ui/include/recovery_ui/screen_ui.h b/recovery_ui/include/recovery_ui/screen_ui.h index 92b3c254..26d65448 100644 --- a/recovery_ui/include/recovery_ui/screen_ui.h +++ b/recovery_ui/include/recovery_ui/screen_ui.h @@ -127,7 +127,7 @@ class TextMenu : public Menu { size_t MenuEnd() const; // Menu example: - // info: Android Recovery + // info: Project ICE Recovery // .... // help messages: Swipe up/down to move // Swipe left/right to select |