diff options
author | Tao Bao <tbao@google.com> | 2016-10-10 23:14:34 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-10-10 23:14:34 +0200 |
commit | 00a9050815369d98ad5230fcf13a60577ebeb99a (patch) | |
tree | 9a3904480d6a9bc172cbd6fbc834574d33db9786 /updater | |
parent | Merge "No longer need android/log.h" (diff) | |
parent | Merge "Update the header path for ext4_utils." (diff) | |
download | android_bootable_recovery-00a9050815369d98ad5230fcf13a60577ebeb99a.tar android_bootable_recovery-00a9050815369d98ad5230fcf13a60577ebeb99a.tar.gz android_bootable_recovery-00a9050815369d98ad5230fcf13a60577ebeb99a.tar.bz2 android_bootable_recovery-00a9050815369d98ad5230fcf13a60577ebeb99a.tar.lz android_bootable_recovery-00a9050815369d98ad5230fcf13a60577ebeb99a.tar.xz android_bootable_recovery-00a9050815369d98ad5230fcf13a60577ebeb99a.tar.zst android_bootable_recovery-00a9050815369d98ad5230fcf13a60577ebeb99a.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/Android.mk | 1 | ||||
-rw-r--r-- | updater/install.cpp | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/updater/Android.mk b/updater/Android.mk index 507088dcd..d9fc72c8f 100644 --- a/updater/Android.mk +++ b/updater/Android.mk @@ -62,7 +62,6 @@ LOCAL_STATIC_LIBRARIES += \ $(tune2fs_static_libraries) LOCAL_CFLAGS += -Wno-unused-parameter -Werror -LOCAL_C_INCLUDES += system/extras/ext4_utils LOCAL_STATIC_LIBRARIES += \ libsparse_static \ libz diff --git a/updater/install.cpp b/updater/install.cpp index 8c33c2bf3..24e35cfb8 100644 --- a/updater/install.cpp +++ b/updater/install.cpp @@ -40,6 +40,8 @@ #include <android-base/properties.h> #include <android-base/strings.h> #include <android-base/stringprintf.h> +#include <ext4_utils/make_ext4fs.h> +#include <ext4_utils/wipe.h> #include <selinux/label.h> #include <selinux/selinux.h> @@ -57,9 +59,6 @@ #include "install.h" #include "tune2fs.h" -#include "make_ext4fs.h" -#include "wipe.h" - // Send over the buffer to recovery though the command pipe. static void uiPrint(State* state, const std::string& buffer) { UpdaterInfo* ui = reinterpret_cast<UpdaterInfo*>(state->cookie); |