diff options
author | Doug Zongker <dougz@android.com> | 2009-05-29 04:02:45 +0200 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2009-05-29 04:02:45 +0200 |
commit | 07e1dca7068284c4f3013550335029eb72b39b82 (patch) | |
tree | 52685fc37135c50e0abf2518c8028f1f2d081919 /recovery.c | |
parent | undo temporary alignment hack (diff) | |
download | android_bootable_recovery-07e1dca7068284c4f3013550335029eb72b39b82.tar android_bootable_recovery-07e1dca7068284c4f3013550335029eb72b39b82.tar.gz android_bootable_recovery-07e1dca7068284c4f3013550335029eb72b39b82.tar.bz2 android_bootable_recovery-07e1dca7068284c4f3013550335029eb72b39b82.tar.lz android_bootable_recovery-07e1dca7068284c4f3013550335029eb72b39b82.tar.xz android_bootable_recovery-07e1dca7068284c4f3013550335029eb72b39b82.tar.zst android_bootable_recovery-07e1dca7068284c4f3013550335029eb72b39b82.zip |
Diffstat (limited to 'recovery.c')
-rw-r--r-- | recovery.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recovery.c b/recovery.c index a0bae97ca..e329db93d 100644 --- a/recovery.c +++ b/recovery.c @@ -375,7 +375,12 @@ prompt_and_wait() } else if (!ui_text_visible()) { return; // reboot if logs aren't visible } else { - ui_print("Install from sdcard complete.\n"); + if (firmware_update_pending()) { + ui_print("\nReboot via home+back or menu\n" + "to complete installation.\n"); + } else { + ui_print("\nInstall from sdcard complete.\n"); + } } break; } |