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

Commit 76a0579a authored by Nikita Ioffe's avatar Nikita Ioffe
Browse files

Make init.updatable_crashing a read/write property

This property will need to be reset during userspace reboot, so it can't
be a read-only property anymore.

Test: builds
Test: atest apex_rollback_tests
Bug: 135984674
Change-Id: I9f5ec10ed31b63642192573139e44d43e726ea9c
parent d3ec7950
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -370,7 +370,7 @@ public final class RollbackPackageHealthObserver implements PackageHealthObserve
    private void checkAndMitigateNativeCrashes() {
        mNumberOfNativeCrashPollsRemaining--;
        // Check if native watchdog reported a crash
        if ("1".equals(SystemProperties.get("ro.init.updatable_crashing"))) {
        if ("1".equals(SystemProperties.get("sys.init.updatable_crashing"))) {
            execute(getModuleMetadataPackage());
            // we stop polling after an attempt to execute rollback, regardless of whether the
            // attempt succeeds or not