summaryrefslogtreecommitdiff
path: root/init/property_service.cpp
diff options
context:
space:
mode:
authorRoman Kiryanov <rkir@google.com>2021-04-01 11:38:03 -0700
committerRoman Kiryanov <rkir@google.com>2021-04-01 11:39:30 -0700
commitbcc7946ef0883c73752251ee034b84c8416b48a5 (patch)
treeb0c198634c2b331dbe729a387a6f921dd288956f /init/property_service.cpp
parent527cdd4617cd7545dc9d4b5c7fddaf1c14060d7e (diff)
Populate all other emulator properties as `ro.boot.qemu.*`
Bug: 182291166 Test: getprop | grep "ro\.boot\.qemu\." Signed-off-by: Roman Kiryanov <rkir@google.com> Change-Id: I0d2a4a9edd87999b35fac8496e9cda93fc7d0cf1
Diffstat (limited to 'init/property_service.cpp')
-rw-r--r--init/property_service.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/property_service.cpp b/init/property_service.cpp
index 73ef97ada..0dc8159e2 100644
--- a/init/property_service.cpp
+++ b/init/property_service.cpp
@@ -1176,7 +1176,7 @@ static std::string RemapEmulatorPropertyName(const std::string_view qemu_key) {
} else if (qemu_key == "media.ccodec"sv) {
return "debug.stagefright.ccodec"s;
} else {
- return ""s; // TBD
+ return "qemu."s + std::string(qemu_key);
}
}