eb7799c1b6
Allow user to provide userinit.sh and/or userinit.d/* scripts under /data/local to be run on each boot. Change-Id: I96f3034bcdea8d4cc75929d21b69efa31c1cb108
16 lines
416 B
Bash
Executable File
16 lines
416 B
Bash
Executable File
#!/system/bin/sh
|
|
# call userinit.sh and/or userinit.d/* scripts if present in /data/local
|
|
|
|
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;
|
|
setprop cm.userinit.active 1;
|
|
fi;
|
|
|
|
if [ -d /data/local/userinit.d ];
|
|
then
|
|
logwrapper busybox run-parts /data/local/userinit.d;
|
|
setprop cm.userinit.active 1;
|
|
fi;
|