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

Commit 5e9d050e authored by Georg Veichtlbauer's avatar Georg Veichtlbauer Committed by Abhisek Devkota
Browse files

init: remove logwrapper

Change-Id: I1e2ecfcbca335afd1c8bf7c6fd76684a221b99ef
parent 4e3886c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#!/system/bin/sh

export PATH=/sbin:/system/sbin:/system/bin:/system/xbin
/system/bin/logwrapper /system/xbin/run-parts /system/etc/init.d 
/system/xbin/run-parts /system/etc/init.d
+2 −2
Original line number Diff line number Diff line
@@ -4,12 +4,12 @@
if [ -e /data/local/userinit.sh ];
then
   log -p i -t userinit "Executing /data/local/userinit.sh";
   logwrapper /system/bin/sh /data/local/userinit.sh;
   /system/bin/sh /data/local/userinit.sh;
   setprop cm.userinit.active 1;
fi;

if [ -d /data/local/userinit.d ];
then
   logwrapper busybox run-parts /data/local/userinit.d;
   busybox run-parts /data/local/userinit.d;
   setprop cm.userinit.active 1;
fi;