Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 22 | char* MENU_HEADERS[] = { "Android system recovery utility", |
| 23 | "", |
| 24 | NULL }; |
| 25 | |
| 26 | char* MENU_ITEMS[] = { "reboot system now", |
| 27 | "apply sdcard:update.zip", |
| 28 | "wipe data/factory reset", |
| 29 | "wipe cache partition", |
Koushik K. Dutta | e923487 | 2010-02-12 00:43:24 -0800 | [diff] [blame^] | 30 | "install zip from sdcard", |
Koushik K. Dutta | 6060e5c | 2010-02-11 22:27:06 -0800 | [diff] [blame] | 31 | "toggle signature verification", |
| 32 | "toggle script asserts", |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 33 | NULL }; |
| 34 | |
Doug Zongker | 23412e6 | 2009-07-23 10:16:07 -0700 | [diff] [blame] | 35 | int device_toggle_display(volatile char* key_pressed, int key_code) { |
Koushik K. Dutta | 0d4ff2f | 2010-02-08 15:05:21 -0800 | [diff] [blame] | 36 | int alt = key_pressed[KEY_LEFTALT] || key_pressed[KEY_RIGHTALT]; |
| 37 | if (alt && key_code == KEY_L) |
| 38 | return 1; |
| 39 | return key_code == KEY_HOME || key_code == KEY_MENU; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Doug Zongker | 23412e6 | 2009-07-23 10:16:07 -0700 | [diff] [blame] | 42 | int device_reboot_now(volatile char* key_pressed, int key_code) { |
Doug Zongker | cbb9129 | 2009-06-11 14:54:41 -0700 | [diff] [blame] | 43 | return 0; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | int device_handle_key(int key_code, int visible) { |
Doug Zongker | cbb9129 | 2009-06-11 14:54:41 -0700 | [diff] [blame] | 47 | if (visible) { |
| 48 | switch (key_code) { |
| 49 | case KEY_DOWN: |
| 50 | case KEY_VOLUMEDOWN: |
| 51 | return HIGHLIGHT_DOWN; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 52 | |
Doug Zongker | cbb9129 | 2009-06-11 14:54:41 -0700 | [diff] [blame] | 53 | case KEY_UP: |
| 54 | case KEY_VOLUMEUP: |
| 55 | return HIGHLIGHT_UP; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 56 | |
Doug Zongker | cbb9129 | 2009-06-11 14:54:41 -0700 | [diff] [blame] | 57 | case KEY_ENTER: |
Koushik K. Dutta | 89d385c | 2010-02-04 14:17:32 -0800 | [diff] [blame] | 58 | case BTN_MOUSE: |
Doug Zongker | cbb9129 | 2009-06-11 14:54:41 -0700 | [diff] [blame] | 59 | return SELECT_ITEM; |
Koushik K. Dutta | e923487 | 2010-02-12 00:43:24 -0800 | [diff] [blame^] | 60 | case KEY_BACKSPACE: |
| 61 | case KEY_END: |
| 62 | return GO_BACK; |
Doug Zongker | cbb9129 | 2009-06-11 14:54:41 -0700 | [diff] [blame] | 63 | } |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 64 | } |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 65 | |
Doug Zongker | cbb9129 | 2009-06-11 14:54:41 -0700 | [diff] [blame] | 66 | return NO_ACTION; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Doug Zongker | cbb9129 | 2009-06-11 14:54:41 -0700 | [diff] [blame] | 69 | int device_perform_action(int which) { |
| 70 | return which; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 71 | } |
Doug Zongker | b128f54 | 2009-06-18 15:07:14 -0700 | [diff] [blame] | 72 | |
| 73 | int device_wipe_data() { |
| 74 | return 0; |
| 75 | } |