summaryrefslogtreecommitdiffstats
path: root/updater/install.c
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-06-03 21:23:25 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-03 21:23:25 +0200
commit9343488cd7b924087c93ba0ddd5dcd1c29810608 (patch)
tree453a397c8efa9f42307fd4fd5f681466d7fc20ed /updater/install.c
parentam 2c51ec95: am 02b64725: Merge "uncrypt: Write status when it reboots to factory reset" into mnc-dev (diff)
parentam d107e6dc: am a69e608a: Merge "Log update outputs in order" (diff)
downloadandroid_bootable_recovery-9343488cd7b924087c93ba0ddd5dcd1c29810608.tar
android_bootable_recovery-9343488cd7b924087c93ba0ddd5dcd1c29810608.tar.gz
android_bootable_recovery-9343488cd7b924087c93ba0ddd5dcd1c29810608.tar.bz2
android_bootable_recovery-9343488cd7b924087c93ba0ddd5dcd1c29810608.tar.lz
android_bootable_recovery-9343488cd7b924087c93ba0ddd5dcd1c29810608.tar.xz
android_bootable_recovery-9343488cd7b924087c93ba0ddd5dcd1c29810608.tar.zst
android_bootable_recovery-9343488cd7b924087c93ba0ddd5dcd1c29810608.zip
Diffstat (limited to 'updater/install.c')
-rw-r--r--updater/install.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/updater/install.c b/updater/install.c
index 01a5dd24b..da6b57782 100644
--- a/updater/install.c
+++ b/updater/install.c
@@ -61,6 +61,12 @@ void uiPrint(State* state, char* buffer) {
line = strtok(NULL, "\n");
}
fprintf(ui->cmd_pipe, "ui_print\n");
+
+ // The recovery will only print the contents to screen for pipe command
+ // ui_print. We need to dump the contents to stderr (which has been
+ // redirected to the log file) directly.
+ fprintf(stderr, buffer);
+ fprintf(stderr, "\n");
}
__attribute__((__format__(printf, 2, 3))) __nonnull((2))