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