summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Tjin <pattjin@google.com>2014-12-09 21:42:42 +0100
committerPat Tjin <pattjin@google.com>2014-12-10 06:18:05 +0100
commitf59b994264b2e8ffe179e2405cda81811f8a9db1 (patch)
treedd323c01b09676ca0ef67155a9f4dad574aad0bb
parentSave kernel logs to /cache/recovery (diff)
downloadandroid_bootable_recovery-f59b994264b2e8ffe179e2405cda81811f8a9db1.tar
android_bootable_recovery-f59b994264b2e8ffe179e2405cda81811f8a9db1.tar.gz
android_bootable_recovery-f59b994264b2e8ffe179e2405cda81811f8a9db1.tar.bz2
android_bootable_recovery-f59b994264b2e8ffe179e2405cda81811f8a9db1.tar.lz
android_bootable_recovery-f59b994264b2e8ffe179e2405cda81811f8a9db1.tar.xz
android_bootable_recovery-f59b994264b2e8ffe179e2405cda81811f8a9db1.tar.zst
android_bootable_recovery-f59b994264b2e8ffe179e2405cda81811f8a9db1.zip
-rw-r--r--recovery.cpp38
1 files changed, 36 insertions, 2 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 176ac7a07..1d22b248a 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -82,6 +82,9 @@ static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
#define KEEP_LOG_COUNT 10
+// Number of lines per page when displaying a file on screen
+#define LINES_PER_PAGE 30
+
RecoveryUI* ui = NULL;
char* locale = NULL;
char recovery_version[PROPERTY_VALUE_MAX+1];
@@ -725,15 +728,46 @@ static void file_to_ui(const char* fn) {
}
char line[1024];
int ct = 0;
+ int key = 0;
redirect_stdio("/dev/null");
while(fgets(line, sizeof(line), fp) != NULL) {
ui->Print("%s", line);
ct++;
- if (ct % 30 == 0) {
+ if (ct % LINES_PER_PAGE == 0) {
// give the user time to glance at the entries
- ui->WaitKey();
+ key = ui->WaitKey();
+
+ if (key == KEY_POWER) {
+ break;
+ }
+
+ if (key == KEY_VOLUMEUP) {
+ // Go back by seeking to the beginning and dumping ct - n
+ // lines. It's ugly, but this way we don't need to store
+ // the previous offsets. The files we're dumping here aren't
+ // expected to be very large.
+ int i;
+
+ ct -= 2 * LINES_PER_PAGE;
+ if (ct < 0) {
+ ct = 0;
+ }
+ fseek(fp, 0, SEEK_SET);
+ for (i = 0; i < ct; i++) {
+ fgets(line, sizeof(line), fp);
+ }
+ ui->Print("^^^^^^^^^^\n");
+ }
}
}
+
+ // If the user didn't abort, then give the user time to glance at
+ // the end of the log, sorry, no rewind here
+ if (key != KEY_POWER) {
+ ui->Print("\n--END-- (press any key)\n");
+ ui->WaitKey();
+ }
+
redirect_stdio(TEMPORARY_LOG_FILE);
fclose(fp);
}