blob: bcba88826d0b2e70d0bb92936ba6d6aa3befb498 [file] [log] [blame]
Doug Zongkerddd6a282009-06-09 12:22:33 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <linux/input.h>
18
19#include "recovery_ui.h"
20#include "common.h"
21
22char* MENU_HEADERS[] = { "Android system recovery utility",
23 "",
24 NULL };
25
26char* MENU_ITEMS[] = { "reboot system now",
Doug Zongkerdc9e87c2010-07-29 17:08:50 -070027 "apply update from external storage",
Doug Zongkerddd6a282009-06-09 12:22:33 -070028 "wipe data/factory reset",
29 "wipe cache partition",
30 NULL };
31
Doug Zongkerefa1bab2010-02-01 15:59:12 -080032int device_recovery_start() {
33 return 0;
34}
35
Doug Zongker23412e62009-07-23 10:16:07 -070036int device_toggle_display(volatile char* key_pressed, int key_code) {
Doug Zongkercbb91292009-06-11 14:54:41 -070037 return key_code == KEY_HOME;
Doug Zongkerddd6a282009-06-09 12:22:33 -070038}
39
Doug Zongker23412e62009-07-23 10:16:07 -070040int device_reboot_now(volatile char* key_pressed, int key_code) {
Doug Zongkercbb91292009-06-11 14:54:41 -070041 return 0;
Doug Zongkerddd6a282009-06-09 12:22:33 -070042}
43
44int device_handle_key(int key_code, int visible) {
Doug Zongkercbb91292009-06-11 14:54:41 -070045 if (visible) {
46 switch (key_code) {
47 case KEY_DOWN:
48 case KEY_VOLUMEDOWN:
49 return HIGHLIGHT_DOWN;
Doug Zongkerddd6a282009-06-09 12:22:33 -070050
Doug Zongkercbb91292009-06-11 14:54:41 -070051 case KEY_UP:
52 case KEY_VOLUMEUP:
53 return HIGHLIGHT_UP;
Doug Zongkerddd6a282009-06-09 12:22:33 -070054
Doug Zongkercbb91292009-06-11 14:54:41 -070055 case KEY_ENTER:
56 return SELECT_ITEM;
57 }
Doug Zongkerddd6a282009-06-09 12:22:33 -070058 }
Doug Zongkerddd6a282009-06-09 12:22:33 -070059
Doug Zongkercbb91292009-06-11 14:54:41 -070060 return NO_ACTION;
Doug Zongkerddd6a282009-06-09 12:22:33 -070061}
62
Doug Zongkercbb91292009-06-11 14:54:41 -070063int device_perform_action(int which) {
64 return which;
Doug Zongkerddd6a282009-06-09 12:22:33 -070065}
Doug Zongkerb128f542009-06-18 15:07:14 -070066
67int device_wipe_data() {
68 return 0;
69}