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

Commit e5e921b2 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Refine the exported DSU status" am: 14ce87c7

Change-Id: Ia92dfa7617cd0f921a8f307e86931510bfefc2a8
parents 0545b245 14ce87c7
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -778,11 +778,10 @@ int SecondStageMain(int argc, char** argv) {
    if (false) DumpState();

    // Make the GSI status available before scripts start running.
    if (android::gsi::IsGsiRunning()) {
        SetProperty("ro.gsid.image_running", "1");
    } else {
        SetProperty("ro.gsid.image_running", "0");
    }
    auto is_running = android::gsi::IsGsiRunning() ? "1" : "0";
    SetProperty(gsi::kGsiBootedProp, is_running);
    auto is_installed = android::gsi::IsGsiInstalled() ? "1" : "0";
    SetProperty(gsi::kGsiInstalledProp, is_installed);

    am.QueueBuiltinAction(SetupCgroupsAction, "SetupCgroups");
    am.QueueBuiltinAction(SetKptrRestrictAction, "SetKptrRestrict");