summaryrefslogtreecommitdiffstats
path: root/ui.c
diff options
context:
space:
mode:
authorKen Sumrall <ksumrall@android.com>2011-03-08 08:37:27 +0100
committerKen Sumrall <ksumrall@android.com>2011-03-11 04:30:13 +0100
commit6e4472abbd3c7be9cd31d98a03df1e3b6fa92f40 (patch)
tree2cffd23c946b1d84de4ebe06b3114507c933dd21 /ui.c
parentdon't reboot for inactivity if USB is connected (diff)
downloadandroid_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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.c b/ui.c
index 179eb2ae6..0744da4d9 100644
--- a/ui.c
+++ b/ui.c
@@ -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;