summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-02-11 01:20:53 +0100
committerElliott Hughes <enh@google.com>2015-02-11 01:20:53 +0100
commitdcbf4fc571236bf5aa5286294b3c727be725db70 (patch)
tree05f42afb7d801d2ff3c6b7a3ac0e05949f710b69 /recovery.cpp
parentam 99e084ca: Merge "Remove dead/unused code and realign some of the comments to make it more cleaner and easier to read" (diff)
parentMerge "recovery: Properly detect userdebug or eng builds" (diff)
downloadandroid_bootable_recovery-dcbf4fc571236bf5aa5286294b3c727be725db70.tar
android_bootable_recovery-dcbf4fc571236bf5aa5286294b3c727be725db70.tar.gz
android_bootable_recovery-dcbf4fc571236bf5aa5286294b3c727be725db70.tar.bz2
android_bootable_recovery-dcbf4fc571236bf5aa5286294b3c727be725db70.tar.lz
android_bootable_recovery-dcbf4fc571236bf5aa5286294b3c727be725db70.tar.xz
android_bootable_recovery-dcbf4fc571236bf5aa5286294b3c727be725db70.tar.zst
android_bootable_recovery-dcbf4fc571236bf5aa5286294b3c727be725db70.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 1d22b248a..e42474e73 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -169,6 +169,11 @@ fopen_path(const char *path, const char *mode) {
return fp;
}
+bool is_ro_debuggable() {
+ char value[PROPERTY_VALUE_MAX+1];
+ return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
+}
+
static void redirect_stdio(const char* filename) {
// If these fail, there's not really anywhere to complain...
freopen(filename, "a", stdout); setbuf(stdout, NULL);
@@ -1111,9 +1116,7 @@ main(int argc, char **argv) {
// If this is an eng or userdebug build, then automatically
// turn the text display on if the script fails so the error
// message is visible.
- char buffer[PROPERTY_VALUE_MAX+1];
- property_get("ro.build.fingerprint", buffer, "");
- if (strstr(buffer, ":userdebug/") || strstr(buffer, ":eng/")) {
+ if (is_ro_debuggable()) {
ui->ShowText(true);
}
}