summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-06-03 21:10:54 +0200
committerTao Bao <tbao@google.com>2019-06-03 21:14:18 +0200
commit3b9ef341be618885407bc302ffc235585bc01c5d (patch)
treebc773a340c815a2339997476307e6f229985df9b
parentMerge "Disable building simulator for mac" (diff)
downloadandroid_bootable_recovery-3b9ef341be618885407bc302ffc235585bc01c5d.tar
android_bootable_recovery-3b9ef341be618885407bc302ffc235585bc01c5d.tar.gz
android_bootable_recovery-3b9ef341be618885407bc302ffc235585bc01c5d.tar.bz2
android_bootable_recovery-3b9ef341be618885407bc302ffc235585bc01c5d.tar.lz
android_bootable_recovery-3b9ef341be618885407bc302ffc235585bc01c5d.tar.xz
android_bootable_recovery-3b9ef341be618885407bc302ffc235585bc01c5d.tar.zst
android_bootable_recovery-3b9ef341be618885407bc302ffc235585bc01c5d.zip
-rw-r--r--minadbd/minadbd_services.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/minadbd/minadbd_services.cpp b/minadbd/minadbd_services.cpp
index 8f2b71aa1..5eda73e40 100644
--- a/minadbd/minadbd_services.cpp
+++ b/minadbd/minadbd_services.cpp
@@ -158,8 +158,15 @@ static void RescueInstallHostService(unique_fd sfd, const std::string& args) {
static void RescueGetpropHostService(unique_fd sfd, const std::string& prop) {
static const std::unordered_set<std::string> kGetpropAllowedProps = {
- "ro.build.fingerprint",
"ro.build.date.utc",
+ "ro.build.fingerprint",
+ "ro.build.flavor",
+ "ro.build.id",
+ "ro.build.product",
+ "ro.build.tags",
+ "ro.build.version.incremental",
+ "ro.product.device",
+ "ro.product.vendor.device",
};
auto allowed = kGetpropAllowedProps.find(prop) != kGetpropAllowedProps.end();
if (!allowed) {