diff options
author | Dees_Troy <dees_troy@teamw.in> | 2012-09-05 21:24:24 +0200 |
---|---|---|
committer | Dees_Troy <dees_troy@teamw.in> | 2012-09-05 21:24:31 +0200 |
commit | 51a0e82eb29a6dfc79f93479883383fbdbf8bcc2 (patch) | |
tree | 52fc18206eb0feba9f50dc3b0ede9fdc5e40f35e /reboot.c | |
parent | Initial stub of partitions.hpp (diff) | |
download | android_bootable_recovery-51a0e82eb29a6dfc79f93479883383fbdbf8bcc2.tar android_bootable_recovery-51a0e82eb29a6dfc79f93479883383fbdbf8bcc2.tar.gz android_bootable_recovery-51a0e82eb29a6dfc79f93479883383fbdbf8bcc2.tar.bz2 android_bootable_recovery-51a0e82eb29a6dfc79f93479883383fbdbf8bcc2.tar.lz android_bootable_recovery-51a0e82eb29a6dfc79f93479883383fbdbf8bcc2.tar.xz android_bootable_recovery-51a0e82eb29a6dfc79f93479883383fbdbf8bcc2.tar.zst android_bootable_recovery-51a0e82eb29a6dfc79f93479883383fbdbf8bcc2.zip |
Diffstat (limited to 'reboot.c')
-rw-r--r-- | reboot.c | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/reboot.c b/reboot.c new file mode 100644 index 000000000..915d199d8 --- /dev/null +++ b/reboot.c @@ -0,0 +1,73 @@ +#include <errno.h> +#include <stdio.h> +#include <stdlib.h> +#include <sys/reboot.h> +//#include <reboot/reboot.h> +#include <unistd.h> + +#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(); + + ensure_path_unmounted("/sdcard"); + + switch (command) + { + case rb_current: + case rb_system: + finish_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; +} + |