9 lines
156 B
Plaintext
9 lines
156 B
Plaintext
|
#!/system/bin/sh
|
||
|
|
||
|
# - run customized shell at boot time
|
||
|
userscript="/data/local/bin/autostart.sh"
|
||
|
|
||
|
[ -x $userscript ] && /system/bin/sh $userscript
|
||
|
|
||
|
exit 0
|