blob: 48c87a0fba40616f75a5b24739d668b98e07cffc (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/system/bin/sh
while : ; do
if [ -d /storage/sdcard1/Linux/jessie ]; then
cd /storage/sdcard1/Linux && /system/bin/sh jessie.sh start_services
/system/bin/date
exit 0
fi
/system/bin/sleep 1
done
|