summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2013-07-02 20:43:25 +0200
committerDoug Zongker <dougz@android.com>2013-07-02 20:43:25 +0200
commitf24fd7e8479d54eaa2b73db5a3a3ad076a13f72d (patch)
tree2dfafc6f3181e6e016381db5d757022259d63712
parentam 8cd12112: am d51bfc9b: Merge "Fix the potential segmentation fault" (diff)
downloadandroid_bootable_recovery-f24fd7e8479d54eaa2b73db5a3a3ad076a13f72d.tar
android_bootable_recovery-f24fd7e8479d54eaa2b73db5a3a3ad076a13f72d.tar.gz
android_bootable_recovery-f24fd7e8479d54eaa2b73db5a3a3ad076a13f72d.tar.bz2
android_bootable_recovery-f24fd7e8479d54eaa2b73db5a3a3ad076a13f72d.tar.lz
android_bootable_recovery-f24fd7e8479d54eaa2b73db5a3a3ad076a13f72d.tar.xz
android_bootable_recovery-f24fd7e8479d54eaa2b73db5a3a3ad076a13f72d.tar.zst
android_bootable_recovery-f24fd7e8479d54eaa2b73db5a3a3ad076a13f72d.zip
-rw-r--r--recovery.cpp26
1 files changed, 17 insertions, 9 deletions
diff --git a/recovery.cpp b/recovery.cpp
index c82844d25..b7fb616ce 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -283,6 +283,19 @@ rotate_last_logs(int max) {
}
}
+static void
+copy_logs() {
+ // Copy logs to cache so the system can find out what happened.
+ copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
+ copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
+ copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
+ chmod(LOG_FILE, 0600);
+ chown(LOG_FILE, 1000, 1000); // system user
+ chmod(LAST_LOG_FILE, 0640);
+ chmod(LAST_INSTALL_FILE, 0644);
+ sync();
+}
+
// clear the recovery command and prepare to boot a (hopefully working) system,
// copy our log file to cache as well (for the system to read), and
// record any intent we were asked to communicate back to the system.
@@ -312,14 +325,7 @@ finish_recovery(const char *send_intent) {
check_and_fclose(fp, LOCALE_FILE);
}
- // Copy logs to cache so the system can find out what happened.
- copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
- copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
- copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
- chmod(LOG_FILE, 0600);
- chown(LOG_FILE, 1000, 1000); // system user
- chmod(LAST_LOG_FILE, 0640);
- chmod(LAST_INSTALL_FILE, 0644);
+ copy_logs();
// Reset to normal system boot so recovery won't cycle indefinitely.
struct bootloader_message boot;
@@ -789,6 +795,7 @@ prompt_and_wait(Device* device, int status) {
if (status != INSTALL_SUCCESS) {
ui->SetBackground(RecoveryUI::ERROR);
ui->Print("Installation aborted.\n");
+ copy_logs();
} else if (!ui->IsTextVisible()) {
return; // reboot if logs aren't visible
} else {
@@ -866,7 +873,7 @@ main(int argc, char **argv) {
load_volume_table();
ensure_path_mounted(LAST_LOG_FILE);
- rotate_last_logs(5);
+ rotate_last_logs(10);
get_args(&argc, &argv);
int previous_runs = 0;
@@ -979,6 +986,7 @@ main(int argc, char **argv) {
}
if (status == INSTALL_ERROR || status == INSTALL_CORRUPT) {
+ copy_logs();
ui->SetBackground(RecoveryUI::ERROR);
}
if (status != INSTALL_SUCCESS || ui->IsTextVisible()) {