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

Commit 9662bb70 authored by Andres Morales's avatar Andres Morales Committed by Android (Google) Code Review
Browse files

Merge "check bootimage version string against system"

parents fe026218 7de24ce0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -669,8 +669,8 @@ public class Build {
        }

        if (!TextUtils.isEmpty(bootimage)) {
            if (!Objects.equals(vendor, bootimage)) {
                Slog.e(TAG, "Mismatched fingerprints; system and vendor reported " + system
            if (!Objects.equals(system, bootimage)) {
                Slog.e(TAG, "Mismatched fingerprints; system reported " + system
                        + " but bootimage reported " + bootimage);
                return false;
            }