From ead3ec67476dd875d8ae01e19f58b23db41793f3 Mon Sep 17 00:00:00 2001 From: Ziyang Zhou Date: Sat, 26 Jun 2021 13:42:24 +0800 Subject: [PATCH 2/8] allow override ro.* prop --- init/property_service.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init/property_service.cpp b/init/property_service.cpp index 2d67bf5d7..55e89c647 100755 --- a/init/property_service.cpp +++ b/init/property_service.cpp @@ -1234,6 +1234,8 @@ static void ProcessKernelCmdline() { ImportKernelCmdline([&](const std::string& key, const std::string& value) { if (StartsWith(key, ANDROIDBOOT_PREFIX)) { InitPropertySet("ro.boot." + key.substr(ANDROIDBOOT_PREFIX.size()), value); + } else if (StartsWith(key, "ro.")) { + InitPropertySet(key, value); } }); } -- 2.34.1