summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-08-30 23:11:58 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-08-30 23:11:58 +0200
commit48019cf71a42cef86628a2e452b4ef4c5040b6fd (patch)
treeb57d06765a238e7d5d4cc2876777d0cf27fdf335 /recovery.cpp
parentMerge "Fix clang-tidy warnings in bootable/recovery." am: 89bf2bdc85 am: 9968866e86 am: d987fe1d57 (diff)
parentMerge "minadbd: rename adb_server_main to minadbd_main." am: 818394869d am: aad4cef0f3 (diff)
downloadandroid_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.gz
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.bz2
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.lz
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.xz
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.tar.zst
android_bootable_recovery-48019cf71a42cef86628a2e452b4ef4c5040b6fd.zip
Diffstat (limited to '')
-rw-r--r--recovery.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 6989fe00d..eabae68e0 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 "minzip/Zip.h"
@@ -1498,7 +1499,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;
}