summaryrefslogtreecommitdiffstats
path: root/updater/build_info.cpp
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2019-06-28 09:17:26 +0200
committerJustin Yun <justinyun@google.com>2019-06-28 09:17:26 +0200
commit7ba8f18590559cde3632a24dcfdaf6c2f5dfb31e (patch)
tree649f930dc2399fb45b5284c9979982ad2865c876 /updater/build_info.cpp
parentMerge "recovery_ui: Remove redundant menu creation." (diff)
downloadandroid_bootable_recovery-7ba8f18590559cde3632a24dcfdaf6c2f5dfb31e.tar
android_bootable_recovery-7ba8f18590559cde3632a24dcfdaf6c2f5dfb31e.tar.gz
android_bootable_recovery-7ba8f18590559cde3632a24dcfdaf6c2f5dfb31e.tar.bz2
android_bootable_recovery-7ba8f18590559cde3632a24dcfdaf6c2f5dfb31e.tar.lz
android_bootable_recovery-7ba8f18590559cde3632a24dcfdaf6c2f5dfb31e.tar.xz
android_bootable_recovery-7ba8f18590559cde3632a24dcfdaf6c2f5dfb31e.tar.zst
android_bootable_recovery-7ba8f18590559cde3632a24dcfdaf6c2f5dfb31e.zip
Diffstat (limited to '')
-rw-r--r--updater/build_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/build_info.cpp b/updater/build_info.cpp
index 8e87bd3e5..3072aab54 100644
--- a/updater/build_info.cpp
+++ b/updater/build_info.cpp
@@ -79,7 +79,7 @@ std::string BuildInfo::GetProperty(const std::string_view key,
"ro.product.name"
};
const std::vector<std::string> source_order = {
- "product", "product_services", "odm", "vendor", "system",
+ "product", "odm", "vendor", "system_ext", "system",
};
if (ro_product_props.find(key) != ro_product_props.end()) {
std::string_view key_suffix(key);