* TODO: Rebrand cmsdk when it's in a working state Change-Id: I0d8d573f9e0032110ae3a0f54ebe11a877b83137
10 lines
249 B
Bash
Executable File
10 lines
249 B
Bash
Executable File
#!/system/bin/sh
|
|
# call userinit.sh if present in /data/local
|
|
|
|
if [ -e /data/local/userinit.sh ];
|
|
then
|
|
log -p i -t userinit "Executing /data/local/userinit.sh";
|
|
/system/bin/sh /data/local/userinit.sh;
|
|
setprop lineage.userinit.active 1;
|
|
fi;
|