summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-07-25 21:09:40 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-07-25 21:09:40 +0200
commitac634e3c9dee32b660100788aefdb552cca31261 (patch)
treed8fece6fe60349a1d8cf1753f67cfcaa9ec7da21
parentMerge "recovery: Fix the flickering when turning on text mode." (diff)
parentMerge "updater: Remove dead make_parents()." (diff)
downloadandroid_bootable_recovery-ac634e3c9dee32b660100788aefdb552cca31261.tar
android_bootable_recovery-ac634e3c9dee32b660100788aefdb552cca31261.tar.gz
android_bootable_recovery-ac634e3c9dee32b660100788aefdb552cca31261.tar.bz2
android_bootable_recovery-ac634e3c9dee32b660100788aefdb552cca31261.tar.lz
android_bootable_recovery-ac634e3c9dee32b660100788aefdb552cca31261.tar.xz
android_bootable_recovery-ac634e3c9dee32b660100788aefdb552cca31261.tar.zst
android_bootable_recovery-ac634e3c9dee32b660100788aefdb552cca31261.zip
-rw-r--r--updater/install.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/updater/install.cpp b/updater/install.cpp
index bfe91e7f9..8e54c2e75 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -95,34 +95,6 @@ void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
uiPrint(state, error_msg);
}
-static bool is_dir(const std::string& dirpath) {
- struct stat st;
- return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
-}
-
-// Create all parent directories of name, if necessary.
-static bool make_parents(const std::string& name) {
- size_t prev_end = 0;
- while (prev_end < name.size()) {
- size_t next_end = name.find('/', prev_end + 1);
- if (next_end == std::string::npos) {
- break;
- }
- std::string dir_path = name.substr(0, next_end);
- if (!is_dir(dir_path)) {
- int result = mkdir(dir_path.c_str(), 0700);
- if (result != 0) {
- PLOG(ERROR) << "failed to mkdir " << dir_path << " when make parents for " << name;
- return false;
- }
-
- LOG(INFO) << "created [" << dir_path << "]";
- }
- prev_end = next_end;
- }
- return true;
-}
-
// mount(fs_type, partition_type, location, mount_point)
// mount(fs_type, partition_type, location, mount_point, mount_options)