summaryrefslogtreecommitdiffstats
path: root/recovery.c
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2010-09-01 23:53:32 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-01 23:53:32 +0200
commit17b44ee3d82d7b8efa8dc3bc17d78fee11d72e01 (patch)
treec05327d377d4acd0c410d5b04829fe54e0fe96dc /recovery.c
parentam 965f9dc4: merge -s ours from froyo-release so that upgrading to gingerbread is a git fast-forward (diff)
parentFix for crespo. (diff)
downloadandroid_bootable_recovery-17b44ee3d82d7b8efa8dc3bc17d78fee11d72e01.tar
android_bootable_recovery-17b44ee3d82d7b8efa8dc3bc17d78fee11d72e01.tar.gz
android_bootable_recovery-17b44ee3d82d7b8efa8dc3bc17d78fee11d72e01.tar.bz2
android_bootable_recovery-17b44ee3d82d7b8efa8dc3bc17d78fee11d72e01.tar.lz
android_bootable_recovery-17b44ee3d82d7b8efa8dc3bc17d78fee11d72e01.tar.xz
android_bootable_recovery-17b44ee3d82d7b8efa8dc3bc17d78fee11d72e01.tar.zst
android_bootable_recovery-17b44ee3d82d7b8efa8dc3bc17d78fee11d72e01.zip
Diffstat (limited to 'recovery.c')
-rw-r--r--recovery.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/recovery.c b/recovery.c
index 04bf657d5..5b772dcb1 100644
--- a/recovery.c
+++ b/recovery.c
@@ -51,7 +51,7 @@ static const struct option OPTIONS[] = {
static const char *COMMAND_FILE = "CACHE:recovery/command";
static const char *INTENT_FILE = "CACHE:recovery/intent";
static const char *LOG_FILE = "CACHE:recovery/log";
-static const char *SDCARD_PACKAGE_FILE = "SDCARD:update.zip";
+static const char *SDCARD_PACKAGE_FILE = "CACHE:update.zip";
static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
static const char *SIDELOAD_TEMP_DIR = "TMP:sideload";
@@ -577,6 +577,7 @@ main(int argc, char **argv) {
ui_init();
get_args(&argc, &argv);
+ ui_print("Rebooting started...\n");
int previous_runs = 0;
const char *send_intent = NULL;
const char *update_package = NULL;