diff options
author | android-build-prod (mdb) <android-build-team-robot@google.com> | 2018-05-04 19:26:11 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-05-04 19:26:11 +0200 |
commit | 420f7f8df45b16aa984396270419cacf11baeab6 (patch) | |
tree | f376f2005a2bc514781e4f94ca176378ab9a9f68 /updater/install.cpp | |
parent | Merge "otautil: Only build the needed files for host build." (diff) | |
parent | Move reboot() from common.h into otautil/sysutil.h. (diff) | |
download | android_bootable_recovery-420f7f8df45b16aa984396270419cacf11baeab6.tar android_bootable_recovery-420f7f8df45b16aa984396270419cacf11baeab6.tar.gz android_bootable_recovery-420f7f8df45b16aa984396270419cacf11baeab6.tar.bz2 android_bootable_recovery-420f7f8df45b16aa984396270419cacf11baeab6.tar.lz android_bootable_recovery-420f7f8df45b16aa984396270419cacf11baeab6.tar.xz android_bootable_recovery-420f7f8df45b16aa984396270419cacf11baeab6.tar.zst android_bootable_recovery-420f7f8df45b16aa984396270419cacf11baeab6.zip |
Diffstat (limited to 'updater/install.cpp')
-rw-r--r-- | updater/install.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/updater/install.cpp b/updater/install.cpp index 5623c3379..bd22467ab 100644 --- a/updater/install.cpp +++ b/updater/install.cpp @@ -48,7 +48,6 @@ #include <android-base/strings.h> #include <applypatch/applypatch.h> #include <bootloader_message/bootloader_message.h> -#include <cutils/android_reboot.h> #include <ext4_utils/wipe.h> #include <openssl/sha.h> #include <selinux/label.h> @@ -58,10 +57,11 @@ #include "edify/expr.h" #include "otafault/ota_io.h" -#include "otautil/DirUtil.h" +#include "otautil/dirutil.h" #include "otautil/error_code.h" #include "otautil/mounts.h" #include "otautil/print_sha1.h" +#include "otautil/sysutil.h" #include "updater/updater.h" // Send over the buffer to recovery though the command pipe. @@ -874,11 +874,7 @@ Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique return StringValue(""); } - std::string reboot_cmd = "reboot," + property; - if (android::base::GetBoolProperty("ro.boot.quiescent", false)) { - reboot_cmd += ",quiescent"; - } - android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd); + reboot("reboot," + property); sleep(5); return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name); |