summaryrefslogtreecommitdiffstats
path: root/adb_install.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-09-24 00:30:55 +0200
committerElliott Hughes <enh@google.com>2016-09-26 18:51:37 +0200
commitcb22040c6303144a42a90f424f29a267e43bef74 (patch)
tree034b34abded47d933f5e4f84b8f92936fb74bd47 /adb_install.cpp
parentMerge "Check corruption when reading uncrypt_status file" (diff)
downloadandroid_bootable_recovery-cb22040c6303144a42a90f424f29a267e43bef74.tar
android_bootable_recovery-cb22040c6303144a42a90f424f29a267e43bef74.tar.gz
android_bootable_recovery-cb22040c6303144a42a90f424f29a267e43bef74.tar.bz2
android_bootable_recovery-cb22040c6303144a42a90f424f29a267e43bef74.tar.lz
android_bootable_recovery-cb22040c6303144a42a90f424f29a267e43bef74.tar.xz
android_bootable_recovery-cb22040c6303144a42a90f424f29a267e43bef74.tar.zst
android_bootable_recovery-cb22040c6303144a42a90f424f29a267e43bef74.zip
Diffstat (limited to 'adb_install.cpp')
-rw-r--r--adb_install.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/adb_install.cpp b/adb_install.cpp
index b05fda13a..fab72f8a4 100644
--- a/adb_install.cpp
+++ b/adb_install.cpp
@@ -26,13 +26,14 @@
#include <fcntl.h>
#include "ui.h"
-#include "cutils/properties.h"
#include "install.h"
#include "common.h"
#include "adb_install.h"
#include "minadbd/fuse_adb_provider.h"
#include "fuse_sideload.h"
+#include <android-base/properties.h>
+
static void set_usb_driver(RecoveryUI* ui, bool enabled) {
int fd = open("/sys/class/android_usb/android0/enable", O_WRONLY);
if (fd < 0) {
@@ -49,7 +50,7 @@ static void set_usb_driver(RecoveryUI* ui, bool enabled) {
static void stop_adbd(RecoveryUI* ui) {
ui->Print("Stopping adbd...\n");
- property_set("ctl.stop", "adbd");
+ android::base::SetProperty("ctl.stop", "adbd");
set_usb_driver(ui, false);
}
@@ -57,7 +58,7 @@ static void maybe_restart_adbd(RecoveryUI* ui) {
if (is_ro_debuggable()) {
ui->Print("Restarting adbd...\n");
set_usb_driver(ui, true);
- property_set("ctl.start", "adbd");
+ android::base::SetProperty("ctl.start", "adbd");
}
}