2013-03-23 00:23:48 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
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>
|
|
|
|
|
2013-03-23 00:23:48 +01:00
|
|
|
int main(int argc, char *argv[])
|
2009-03-04 04:32:55 +01:00
|
|
|
{
|
|
|
|
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");
|
2013-03-23 00:23:48 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
if (c == EOF) {
|
|
|
|
break;
|
|
|
|
}
|
2013-03-23 00:23:48 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
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;
|
|
|
|
}
|