init_gsi: Stop spoofing the SPL property

This is the AOSP branch, and we no longer really want to do the spoofing
for SN right now. We don't have the framework-side SPL spoofing anyway.
This commit is contained in:
Peter Cai 2022-08-17 13:55:16 -04:00
parent 216e24536a
commit 0ce7d0d07a

View file

@ -40,8 +40,6 @@ void handle_device_model_props() {
string brand = base::GetProperty("ro.product.vendor.brand", "");
string manufacturer = base::GetProperty("ro.product.vendor.manufacturer", "");
string fingerprint = base::GetProperty("ro.vendor.build.fingerprint", "");
string spl = base::GetProperty("ro.vendor.build.security_patch", "");
string spl_orig = base::GetProperty("ro.build.version.security_patch", "");
for (const auto& source : RO_PROP_SOURCES) {
override_ro_prop("ro.product", source, "device", device);
@ -54,8 +52,6 @@ void handle_device_model_props() {
override_ro_prop("ro", "", "build.stock_fingerprint", fingerprint);
override_ro_prop("ro", "", "build.flavor", name + "-user");
override_ro_prop("ro", "", "build.tags", "release-keys");
override_ro_prop("ro", "", "build.version.security_patch", spl);
override_ro_prop("ro", "", "build.version.real_security_patch", spl_orig);
}
int main(int argc, char **argv) {