diff options
author | Tianjie Xu <xunchang@google.com> | 2019-03-19 21:34:58 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-03-19 21:34:58 +0100 |
commit | eeea86f5fdf29c7e8742fd0fe062ad09e3130433 (patch) | |
tree | 874f99533dc317f106ba4da4e955713c5ff46051 /recovery.cpp | |
parent | Merge "Skip calling verify_package_compatibility when resuming." (diff) | |
parent | Create a FuseDataProvider base class (diff) | |
download | android_bootable_recovery-eeea86f5fdf29c7e8742fd0fe062ad09e3130433.tar android_bootable_recovery-eeea86f5fdf29c7e8742fd0fe062ad09e3130433.tar.gz android_bootable_recovery-eeea86f5fdf29c7e8742fd0fe062ad09e3130433.tar.bz2 android_bootable_recovery-eeea86f5fdf29c7e8742fd0fe062ad09e3130433.tar.lz android_bootable_recovery-eeea86f5fdf29c7e8742fd0fe062ad09e3130433.tar.xz android_bootable_recovery-eeea86f5fdf29c7e8742fd0fe062ad09e3130433.tar.zst android_bootable_recovery-eeea86f5fdf29c7e8742fd0fe062ad09e3130433.zip |
Diffstat (limited to '')
-rw-r--r-- | recovery.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp index 0074b6433..63960eb15 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -56,7 +56,7 @@ #include "common.h" #include "device.h" #include "fsck_unshare_blocks.h" -#include "fuse_sdcard_provider.h" +#include "fuse_sdcard_install.h" #include "fuse_sideload.h" #include "install.h" #include "logging.h" @@ -709,6 +709,7 @@ static void run_graphics_test() { ui->ShowText(true); } +// TODO(xunchang) move apply_from_sdcard() to fuse_sdcard_install.cpp // How long (in seconds) we wait for the fuse-provided package file to // appear, before timing out. #define SDCARD_INSTALL_TIMEOUT 10 |