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
This commit is contained in:
Roman Kiryanov 2021-04-01 11:38:03 -07:00
parent 527cdd4617
commit bcc7946ef0
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}