summaryrefslogtreecommitdiffstats
path: root/fastboot
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2018-08-20 22:40:47 +0200
committerxunchang <xunchang@google.com>2019-03-21 18:46:11 +0100
commit8f397309b41814205c8d32f1c10f6b056c13e8c3 (patch)
tree53c458f85d7ec6ea5243002786d340c8b57dbad6 /fastboot
parentMerge "Move apply_from_sdcard to fuse_sdcard_install" (diff)
downloadandroid_bootable_recovery-8f397309b41814205c8d32f1c10f6b056c13e8c3.tar
android_bootable_recovery-8f397309b41814205c8d32f1c10f6b056c13e8c3.tar.gz
android_bootable_recovery-8f397309b41814205c8d32f1c10f6b056c13e8c3.tar.bz2
android_bootable_recovery-8f397309b41814205c8d32f1c10f6b056c13e8c3.tar.lz
android_bootable_recovery-8f397309b41814205c8d32f1c10f6b056c13e8c3.tar.xz
android_bootable_recovery-8f397309b41814205c8d32f1c10f6b056c13e8c3.tar.zst
android_bootable_recovery-8f397309b41814205c8d32f1c10f6b056c13e8c3.zip
Diffstat (limited to 'fastboot')
-rw-r--r--fastboot/fastboot.cpp3
-rw-r--r--fastboot/fastboot.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp
index 8458c99dd..14f5e4bdc 100644
--- a/fastboot/fastboot.cpp
+++ b/fastboot/fastboot.cpp
@@ -27,8 +27,7 @@
#include <android-base/properties.h>
#include <bootloader_message/bootloader_message.h>
-#include "device.h"
-#include "ui.h"
+#include "recovery_ui/ui.h"
static const std::vector<std::pair<std::string, Device::BuiltinAction>> kFastbootMenuActions{
{ "Reboot system now", Device::REBOOT },
diff --git a/fastboot/fastboot.h b/fastboot/fastboot.h
index 53a2adcae..1aa7de66e 100644
--- a/fastboot/fastboot.h
+++ b/fastboot/fastboot.h
@@ -19,6 +19,6 @@
#include <string>
#include <vector>
-#include "device.h"
+#include "recovery_ui/device.h"
Device::BuiltinAction StartFastboot(Device* device, const std::vector<std::string>& args);