From a4438784ebbed7fc377b429aab7332352abdd670 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Fri, 22 Feb 2013 18:44:00 +0000 Subject: Fix compiling on CM7 --- twrp-functions.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/twrp-functions.cpp b/twrp-functions.cpp index 3e06f8770..d1f9e3dbd 100644 --- a/twrp-functions.cpp +++ b/twrp-functions.cpp @@ -12,7 +12,9 @@ #include #include #include -#include "cutils/android_reboot.h" +#ifdef ANDROID_RB_POWEROFF + #include "cutils/android_reboot.h" +#endif #include #include #include "twrp-functions.hpp" @@ -375,7 +377,9 @@ int TWFunc::tw_reboot(RebootCommand command) return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "bootloader"); case rb_poweroff: check_and_run_script("/sbin/poweroff.sh", "power off"); +#ifdef ANDROID_RB_POWEROFF android_reboot(ANDROID_RB_POWEROFF, 0, 0); +#endif return reboot(RB_POWER_OFF); case rb_download: check_and_run_script("/sbin/rebootdownload.sh", "reboot download"); -- cgit v1.2.3