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

Commit a0d128c8 authored by Mathias Agopian's avatar Mathias Agopian
Browse files

resolved conflicts for merge of de36313b to master

parents 461bcdd3 de36313b
Loading
Loading
Loading
Loading
+16 −5
Original line number Diff line number Diff line
@@ -16,9 +16,12 @@

#define LOG_TAG "BootAnimation"

#include <cutils/properties.h>

#include <binder/IPCThreadState.h>
#include <binder/ProcessState.h>
#include <binder/IServiceManager.h>

#include <utils/Log.h>
#include <utils/threads.h>

@@ -41,6 +44,12 @@ int main(int argc, char** argv)
    setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_DISPLAY);
#endif

    char value[PROPERTY_VALUE_MAX];
    property_get("debug.sf.nobootanimation", value, "0");
    int noBootAnimation = atoi(value);
    LOGI_IF(noBootAnimation,  "boot animation disabled");
    if (!noBootAnimation) {

        sp<ProcessState> proc(ProcessState::self());
        ProcessState::self()->startThreadPool();

@@ -48,5 +57,7 @@ int main(int argc, char** argv)
        sp<BootAnimation> boot = new BootAnimation();

        IPCThreadState::self()->joinThreadPool();

    }
    return 0;
}