Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 82fee584 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "core/Build: ro.system when comparing fingerprint"

parents 8c1b66d3 88c1bf07
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1077,7 +1077,7 @@ public class Build {
            return result == 0;
        }

        final String system = SystemProperties.get("ro.build.fingerprint");
        final String system = SystemProperties.get("ro.system.build.fingerprint");
        final String vendor = SystemProperties.get("ro.vendor.build.fingerprint");
        final String bootimage = SystemProperties.get("ro.bootimage.build.fingerprint");
        final String requiredBootloader = SystemProperties.get("ro.build.expect.bootloader");
@@ -1086,7 +1086,7 @@ public class Build {
        final String currentRadio = SystemProperties.get("gsm.version.baseband");

        if (TextUtils.isEmpty(system)) {
            Slog.e(TAG, "Required ro.build.fingerprint is empty!");
            Slog.e(TAG, "Required ro.system.build.fingerprint is empty!");
            return false;
        }