summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2010-09-01 23:56:27 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-01 23:56:27 +0200
commit4c7c2f73af773872faf5a65167d74900865d96ba (patch)
tree1580e8bafbe8a12d59820ef1b591b05bc093cf0b
parentam 21f0f97e: Fix for crespo. (diff)
parentRevert 21f0f97ebabb47adcbfe8d38b02685f2019b4eb3 (diff)
downloadandroid_bootable_recovery-4c7c2f73af773872faf5a65167d74900865d96ba.tar
android_bootable_recovery-4c7c2f73af773872faf5a65167d74900865d96ba.tar.gz
android_bootable_recovery-4c7c2f73af773872faf5a65167d74900865d96ba.tar.bz2
android_bootable_recovery-4c7c2f73af773872faf5a65167d74900865d96ba.tar.lz
android_bootable_recovery-4c7c2f73af773872faf5a65167d74900865d96ba.tar.xz
android_bootable_recovery-4c7c2f73af773872faf5a65167d74900865d96ba.tar.zst
android_bootable_recovery-4c7c2f73af773872faf5a65167d74900865d96ba.zip
-rw-r--r--default_recovery_ui.c6
-rw-r--r--recovery.c3
-rw-r--r--ui.c2
3 files changed, 5 insertions, 6 deletions
diff --git a/default_recovery_ui.c b/default_recovery_ui.c
index a637ae0b5..409d67934 100644
--- a/default_recovery_ui.c
+++ b/default_recovery_ui.c
@@ -44,15 +44,15 @@ int device_reboot_now(volatile char* key_pressed, int key_code) {
int device_handle_key(int key_code, int visible) {
if (visible) {
switch (key_code) {
- case 0x3a:
+ case KEY_DOWN:
case KEY_VOLUMEDOWN:
return HIGHLIGHT_DOWN;
- case 0x2a:
+ case KEY_UP:
case KEY_VOLUMEUP:
return HIGHLIGHT_UP;
- case 0x9e:
+ case KEY_ENTER:
return SELECT_ITEM;
}
}
diff --git a/recovery.c b/recovery.c
index 5b772dcb1..04bf657d5 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 = "CACHE:update.zip";
+static const char *SDCARD_PACKAGE_FILE = "SDCARD:update.zip";
static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
static const char *SIDELOAD_TEMP_DIR = "TMP:sideload";
@@ -577,7 +577,6 @@ 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;
diff --git a/ui.c b/ui.c
index b8c6d1f26..01a005f80 100644
--- a/ui.c
+++ b/ui.c
@@ -77,7 +77,7 @@ static int gPagesIdentical = 0;
static char text[MAX_ROWS][MAX_COLS];
static int text_cols = 0, text_rows = 0;
static int text_col = 0, text_row = 0, text_top = 0;
-static int show_text = 1;
+static int show_text = 0;
static char menu[MAX_ROWS][MAX_COLS];
static int show_menu = 0;