blob: 69f91c5e320774a2269ad530e8ada5314d89f5dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/system/bin/sh
while : ; do
/system/xbin/mountpoint /storage/sdcard1
if [ $? -eq 0 ]; then
cd /storage/sdcard1/Linux
/system/bin/sh jessie.sh start_services
/system/bin/date
exit 0
fi
/system/bin/sleep 1
done
|