summaryrefslogtreecommitdiffstats
path: root/otautil/paths.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-05-11 22:18:25 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-05-11 22:18:25 +0200
commitca88c67135d077d3727b1017a44f271ab6ab533a (patch)
treeb2582f367c622015c1df8de96bf3ca618c7967e2 /otautil/paths.cpp
parentMerge "recovery: Configure device menu based on runtime info." (diff)
parentMerge "tests: Add tests for ScreenRecoveryUI." (diff)
downloadandroid_bootable_recovery-ca88c67135d077d3727b1017a44f271ab6ab533a.tar
android_bootable_recovery-ca88c67135d077d3727b1017a44f271ab6ab533a.tar.gz
android_bootable_recovery-ca88c67135d077d3727b1017a44f271ab6ab533a.tar.bz2
android_bootable_recovery-ca88c67135d077d3727b1017a44f271ab6ab533a.tar.lz
android_bootable_recovery-ca88c67135d077d3727b1017a44f271ab6ab533a.tar.xz
android_bootable_recovery-ca88c67135d077d3727b1017a44f271ab6ab533a.tar.zst
android_bootable_recovery-ca88c67135d077d3727b1017a44f271ab6ab533a.zip
Diffstat (limited to 'otautil/paths.cpp')
-rw-r--r--otautil/paths.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/otautil/paths.cpp b/otautil/paths.cpp
index ad9ec1145..f08e51c7a 100644
--- a/otautil/paths.cpp
+++ b/otautil/paths.cpp
@@ -19,6 +19,7 @@
constexpr const char kDefaultCacheLogDirectory[] = "/cache/recovery";
constexpr const char kDefaultCacheTempSource[] = "/cache/saved.file";
constexpr const char kDefaultLastCommandFile[] = "/cache/recovery/last_command";
+constexpr const char kDefaultResourceDirectory[] = "/res/images";
constexpr const char kDefaultStashDirectoryBase[] = "/cache/recovery";
constexpr const char kDefaultTemporaryInstallFile[] = "/tmp/last_install";
constexpr const char kDefaultTemporaryLogFile[] = "/tmp/recovery.log";
@@ -32,6 +33,7 @@ Paths::Paths()
: cache_log_directory_(kDefaultCacheLogDirectory),
cache_temp_source_(kDefaultCacheTempSource),
last_command_file_(kDefaultLastCommandFile),
+ resource_dir_(kDefaultResourceDirectory),
stash_directory_base_(kDefaultStashDirectoryBase),
temporary_install_file_(kDefaultTemporaryInstallFile),
temporary_log_file_(kDefaultTemporaryLogFile) {}