diff options
author | Ken Sumrall <ksumrall@android.com> | 2011-03-08 08:37:27 +0100 |
---|---|---|
committer | Ken Sumrall <ksumrall@android.com> | 2011-03-11 04:30:13 +0100 |
commit | 6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40 (patch) | |
tree | 2cffd23c946b1d84de4ebe06b3114507c933dd21 /ui.c | |
parent | don't reboot for inactivity if USB is connected (diff) | |
download | android_bootable_recovery-6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40.tar android_bootable_recovery-6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40.tar.gz android_bootable_recovery-6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40.tar.bz2 android_bootable_recovery-6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40.tar.lz android_bootable_recovery-6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40.tar.xz android_bootable_recovery-6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40.tar.zst android_bootable_recovery-6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40.zip |
Diffstat (limited to '')
-rw-r--r-- | ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,6 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <sys/reboot.h> #include <sys/stat.h> #include <sys/time.h> #include <sys/types.h> @@ -30,6 +29,7 @@ #include <unistd.h> #include "common.h" +#include <cutils/android_reboot.h> #include "minui/minui.h" #include "recovery_ui.h" @@ -358,7 +358,7 @@ static void *input_thread(void *cookie) } if (ev.value > 0 && device_reboot_now(key_pressed, ev.code)) { - reboot(RB_AUTOBOOT); + android_reboot(ANDROID_RB_RESTART, 0, 0); } } return NULL; |