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>
|
2013-04-18 21:20:02 +02:00
|
|
|
#include <cutils/properties.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;
|
2013-04-18 21:20:02 +02:00
|
|
|
size_t prop_len;
|
|
|
|
char property_val[PROPERTY_VALUE_MAX];
|
|
|
|
const char *cmd = "reboot";
|
|
|
|
char *optarg = "";
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
opterr = 0;
|
|
|
|
do {
|
|
|
|
int c;
|
|
|
|
|
2013-04-18 21:20:02 +02:00
|
|
|
c = getopt(argc, argv, "p");
|
2013-03-23 00:23:48 +01:00
|
|
|
|
2014-03-02 18:59:19 +01:00
|
|
|
if (c == -1) {
|
2009-03-04 04:32:55 +01:00
|
|
|
break;
|
|
|
|
}
|
2013-03-23 00:23:48 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
switch (c) {
|
|
|
|
case 'p':
|
2013-04-18 21:20:02 +02:00
|
|
|
cmd = "shutdown";
|
2009-03-04 04:32:55 +01:00
|
|
|
break;
|
|
|
|
case '?':
|
2013-04-18 21:20:02 +02:00
|
|
|
fprintf(stderr, "usage: %s [-p] [rebootcommand]\n", argv[0]);
|
2009-03-04 04:32:55 +01:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
} while (1);
|
|
|
|
|
|
|
|
if(argc > optind + 1) {
|
|
|
|
fprintf(stderr, "%s: too many arguments\n", argv[0]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2013-04-18 21:20:02 +02:00
|
|
|
if (argc > optind)
|
|
|
|
optarg = argv[optind];
|
|
|
|
|
|
|
|
prop_len = snprintf(property_val, sizeof(property_val), "%s,%s", cmd, optarg);
|
|
|
|
if (prop_len >= sizeof(property_val)) {
|
|
|
|
fprintf(stderr, "reboot command too long: %s\n", optarg);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2013-04-18 21:20:02 +02:00
|
|
|
ret = property_set(ANDROID_RB_PROPERTY, property_val);
|
2009-03-04 04:32:55 +01:00
|
|
|
if(ret < 0) {
|
|
|
|
perror("reboot");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2013-10-24 17:53:48 +02:00
|
|
|
|
|
|
|
// Don't return early. Give the reboot command time to take effect
|
|
|
|
// to avoid messing up scripts which do "adb shell reboot && adb wait-for-device"
|
|
|
|
while(1) { pause(); }
|
|
|
|
|
2013-04-18 21:20:02 +02:00
|
|
|
fprintf(stderr, "Done\n");
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|