From a58beade0a4f5342f5dcd3b3a597f9183de92260 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Thu, 27 Sep 2012 09:49:29 -0400 Subject: Port reboot functions to C++ --- reboot.c | 71 ---------------------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 reboot.c (limited to 'reboot.c') diff --git a/reboot.c b/reboot.c deleted file mode 100644 index 9d87ff21d..000000000 --- a/reboot.c +++ /dev/null @@ -1,71 +0,0 @@ -#include -#include -#include -#include -//#include -#include - -#include "tw_reboot.h" -#include "recovery_ui.h" -#include "roots.h" -#include "extra-functions.h" -#include "data.h" -#include "variables.h" - -// isRebootCommandSupported: Return 1 if command is supported, 0 if the command is not supported, -1 on error -int tw_isRebootCommandSupported(RebootCommand command) -{ - switch (command) - { - case rb_system: - case rb_recovery: - case rb_poweroff: - case rb_bootloader: - case rb_download: - return 1; - - default: - return 0; - } - return -1; -} - -// setRebootMode: Set the reboot state (without rebooting). Return 0 on success, -1 on error or unsupported -int tw_setRebootMode(RebootCommand command) -{ - return -1; -} - -// reboot: Reboot the system. Return -1 on error, no return on success -int tw_reboot(RebootCommand command) -{ - // Always force a sync before we reboot - sync(); - - switch (command) - { - case rb_current: - case rb_system: - twfinish_recovery("s"); - sync(); - check_and_run_script("/sbin/rebootsystem.sh", "reboot system"); - return reboot(RB_AUTOBOOT); - case rb_recovery: - check_and_run_script("/sbin/rebootrecovery.sh", "reboot recovery"); - return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "recovery"); - case rb_bootloader: - check_and_run_script("/sbin/rebootbootloader.sh", "reboot bootloader"); - 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"); - return reboot(RB_POWER_OFF); - case rb_download: - check_and_run_script("/sbin/rebootdownload.sh", "reboot download"); - return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "download"); - return 1; - default: - return -1; - } - return -1; -} - -- cgit v1.2.3