cab30bca69
Change-Id: I48ec924b1023500af27dad7a822be5ab9371be7c
35 lines
925 B
Bash
Executable File
35 lines
925 B
Bash
Executable File
#!/system/bin/sh
|
|
# call a userinit.sh script if it's present on the sdcard
|
|
|
|
if [ "$SD_EXT_DIRECTORY" = "" ];
|
|
then
|
|
SD_EXT_DIRECTORY=/sd-ext;
|
|
fi;
|
|
|
|
if [ -e $SD_EXT_DIRECTORY/userinit.sh ];
|
|
then
|
|
log -p i -t userinit "Executing $SD_EXT_DIRECTORY/userinit.sh";
|
|
busybox chmod +x $SD_EXT_DIRECTORY/userinit.sh;
|
|
logwrapper /system/bin/sh $SD_EXT_DIRECTORY/userinit.sh;
|
|
setprop cm.userinit.active 1;
|
|
fi;
|
|
|
|
if [ -d $SD_EXT_DIRECTORY/userinit.d ];
|
|
then
|
|
logwrapper busybox run-parts $SD_EXT_DIRECTORY/userinit.d;
|
|
setprop cm.userinit.active 1;
|
|
fi;
|
|
|
|
if [ -e /data/local/userinit.sh ];
|
|
then
|
|
log -p i -t userinit "Executing /data/local/userinit.sh";
|
|
busybox chmod +x /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; |