11 lines
205 B
Bash
11 lines
205 B
Bash
#!/system/bin/sh
|
|
L="log -p i -t cm"
|
|
$L "Kalim iniciado userinit";
|
|
|
|
# - run customized shell at boot time
|
|
userscript="/data/local/bin/autostart.sh"
|
|
|
|
[ -x $userscript ] && /system/bin/sh $userscript
|
|
|
|
exit 0
|