summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-08-30 22:30:37 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-08-30 22:30:37 +0200
commita331d858067bf5b57fddaf3bef2ce2d7c11f116a (patch)
tree51e65f2fe31a8c2a86b4609b39b55f9e1d3f2c81 /recovery.cpp
parentMerge "Fix clang-tidy warnings in bootable/recovery." am: 89bf2bdc85 (diff)
parentMerge "minadbd: rename adb_server_main to minadbd_main." (diff)
downloadandroid_bootable_recovery-a331d858067bf5b57fddaf3bef2ce2d7c11f116a.tar
android_bootable_recovery-a331d858067bf5b57fddaf3bef2ce2d7c11f116a.tar.gz
android_bootable_recovery-a331d858067bf5b57fddaf3bef2ce2d7c11f116a.tar.bz2
android_bootable_recovery-a331d858067bf5b57fddaf3bef2ce2d7c11f116a.tar.lz
android_bootable_recovery-a331d858067bf5b57fddaf3bef2ce2d7c11f116a.tar.xz
android_bootable_recovery-a331d858067bf5b57fddaf3bef2ce2d7c11f116a.tar.zst
android_bootable_recovery-a331d858067bf5b57fddaf3bef2ce2d7c11f116a.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 45a6fe90c..9fbdd8c66 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -61,6 +61,7 @@
#include "fuse_sdcard_provider.h"
#include "fuse_sideload.h"
#include "install.h"
+#include "minadbd/minadbd.h"
#include "minui/minui.h"
#include "minzip/DirUtil.h"
#include "roots.h"
@@ -1389,7 +1390,7 @@ int main(int argc, char **argv) {
// only way recovery should be run with this argument is when it
// starts a copy of itself from the apply_from_adb() function.
if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
- adb_server_main(0, DEFAULT_ADB_PORT, -1);
+ minadbd_main();
return 0;
}