8d2b2c75bf
Change-Id: I7446c44f1c6388dd6ddb877a1e4ae4e6ab6c2499
10 lines
244 B
Bash
Executable File
10 lines
244 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 cm.userinit.active 1;
|
|
fi;
|