2009-03-04 04:32:55 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2011-03-08 08:29:42 +01:00
|
|
|
#include <cutils/android_reboot.h>
|
2009-03-04 04:32:55 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int reboot_main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int nosync = 0;
|
|
|
|
int poweroff = 0;
|
2011-03-08 08:29:42 +01:00
|
|
|
int flags = 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
opterr = 0;
|
|
|
|
do {
|
|
|
|
int c;
|
|
|
|
|
|
|
|
c = getopt(argc, argv, "np");
|
|
|
|
|
|
|
|
if (c == EOF) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case 'n':
|
|
|
|
nosync = 1;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
poweroff = 1;
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
fprintf(stderr, "usage: %s [-n] [-p] [rebootcommand]\n", argv[0]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
} while (1);
|
|
|
|
|
|
|
|
if(argc > optind + 1) {
|
|
|
|
fprintf(stderr, "%s: too many arguments\n", argv[0]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2011-03-08 08:29:42 +01:00
|
|
|
if(nosync)
|
|
|
|
/* also set NO_REMOUNT_RO as remount ro includes an implicit sync */
|
|
|
|
flags = ANDROID_RB_FLAG_NO_SYNC | ANDROID_RB_FLAG_NO_REMOUNT_RO;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
if(poweroff)
|
2011-03-08 08:29:42 +01:00
|
|
|
ret = android_reboot(ANDROID_RB_POWEROFF, flags, 0);
|
2009-03-04 04:32:55 +01:00
|
|
|
else if(argc > optind)
|
2011-03-08 08:29:42 +01:00
|
|
|
ret = android_reboot(ANDROID_RB_RESTART2, flags, argv[optind]);
|
2009-03-04 04:32:55 +01:00
|
|
|
else
|
2011-03-08 08:29:42 +01:00
|
|
|
ret = android_reboot(ANDROID_RB_RESTART, flags, 0);
|
2009-03-04 04:32:55 +01:00
|
|
|
if(ret < 0) {
|
|
|
|
perror("reboot");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
fprintf(stderr, "reboot returned\n");
|
|
|
|
return 0;
|
|
|
|
}
|