diff options
author | Doug Zongker <dougz@android.com> | 2013-05-14 11:03:02 -0700 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2013-05-16 10:47:02 -0700 |
commit | 596b342a0476629badb41b840494254a19c57dae (patch) | |
tree | 3aab0c59d51a4a5bef461a476f635ee51bbf3495 /verifier_test.cpp | |
parent | c7a6858dc9d4e75c9c889890902141c4243228a7 (diff) | |
download | bootable_recovery-596b342a0476629badb41b840494254a19c57dae.zip bootable_recovery-596b342a0476629badb41b840494254a19c57dae.tar.gz bootable_recovery-596b342a0476629badb41b840494254a19c57dae.tar.bz2 |
recovery: turn on text display for install errors in debug builds
Hopefully this will reduce the number of OTA "bugs" reported that are
really just someone having changed their system partition,
invalidating future incremental OTAs.
Also fixes a longstanding TODO about putting LOGE() output in the
on-screen display.
Change-Id: I44e5be65b2dee7ebce2cce28ccd920dc3d6e522e
Diffstat (limited to 'verifier_test.cpp')
-rw-r--r-- | verifier_test.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/verifier_test.cpp b/verifier_test.cpp index 7fab547..1063cba 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -18,6 +18,7 @@ #include <stdlib.h> #include <stdarg.h> +#include "common.h" #include "verifier.h" #include "ui.h" #include "mincrypt/sha.h" @@ -115,13 +116,10 @@ class FakeUI : public RecoveryUI { bool IsTextVisible() { return false; } bool WasTextEverVisible() { return false; } void Print(const char* fmt, ...) { - char buf[256]; va_list ap; va_start(ap, fmt); - vsnprintf(buf, 256, fmt, ap); + vfprintf(stderr, fmt, ap); va_end(ap); - - fputs(buf, stderr); } void StartMenu(const char* const * headers, const char* const * items, @@ -130,6 +128,14 @@ class FakeUI : public RecoveryUI { void EndMenu() { } }; +void +ui_print(const char* format, ...) { + va_list ap; + va_start(ap, format); + vfprintf(stdout, format, ap); + va_end(ap); +} + int main(int argc, char **argv) { if (argc < 2 || argc > 4) { fprintf(stderr, "Usage: %s [-sha256] [-f4 | -file <keys>] <package>\n", argv[0]); |