From bcc7946ef0883c73752251ee034b84c8416b48a5 Mon Sep 17 00:00:00 2001 From: Roman Kiryanov Date: Thu, 1 Apr 2021 11:38:03 -0700 Subject: [PATCH] Populate all other emulator properties as `ro.boot.qemu.*` Bug: 182291166 Test: getprop | grep "ro\.boot\.qemu\." Signed-off-by: Roman Kiryanov Change-Id: I0d2a4a9edd87999b35fac8496e9cda93fc7d0cf1 --- init/property_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }