summaryrefslogtreecommitdiffstats
path: root/otautil/include
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-04-30 00:19:32 +0200
committerandroid-build-merger <android-build-merger@google.com>2019-04-30 00:19:32 +0200
commit3486372d69782073b5cebe07dee14ff580a2531f (patch)
treed97b289dc37b820fa70a79b7a1907cbbebbb4bf3 /otautil/include
parentMerge "Add install/wipe_device.cpp." (diff)
parentMerge "Consolidate the codes that handle reboot/shutdown." (diff)
downloadandroid_bootable_recovery-3486372d69782073b5cebe07dee14ff580a2531f.tar
android_bootable_recovery-3486372d69782073b5cebe07dee14ff580a2531f.tar.gz
android_bootable_recovery-3486372d69782073b5cebe07dee14ff580a2531f.tar.bz2
android_bootable_recovery-3486372d69782073b5cebe07dee14ff580a2531f.tar.lz
android_bootable_recovery-3486372d69782073b5cebe07dee14ff580a2531f.tar.xz
android_bootable_recovery-3486372d69782073b5cebe07dee14ff580a2531f.tar.zst
android_bootable_recovery-3486372d69782073b5cebe07dee14ff580a2531f.zip
Diffstat (limited to 'otautil/include')
-rw-r--r--otautil/include/otautil/sysutil.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/otautil/include/otautil/sysutil.h b/otautil/include/otautil/sysutil.h
index 692a99e9d..48e9011e5 100644
--- a/otautil/include/otautil/sysutil.h
+++ b/otautil/include/otautil/sysutil.h
@@ -14,12 +14,12 @@
* limitations under the License.
*/
-#ifndef _OTAUTIL_SYSUTIL
-#define _OTAUTIL_SYSUTIL
+#pragma once
#include <sys/types.h>
#include <string>
+#include <string_view>
#include <vector>
#include "rangeset.h"
@@ -101,13 +101,14 @@ class MemMapping {
std::vector<MappedRange> ranges_;
};
-// Wrapper function to trigger a reboot, by additionally handling quiescent reboot mode. The
-// command should start with "reboot," (e.g. "reboot,bootloader" or "reboot,").
-bool reboot(const std::string& command);
+// Reboots the device into the specified target, by additionally handling quiescent reboot mode.
+// 'target' can be an empty string, which indicates booting into Android.
+bool Reboot(std::string_view target);
+
+// Triggers a shutdown.
+bool Shutdown();
// Returns a null-terminated char* array, where the elements point to the C-strings in the given
// vector, plus an additional nullptr at the end. This is a helper function that facilitates
// calling C functions (such as getopt(3)) that expect an array of C-strings.
std::vector<char*> StringVectorToNullTerminatedArray(const std::vector<std::string>& args);
-
-#endif // _OTAUTIL_SYSUTIL