2
0
mirror of https://gitlab.com/Nanolx/NanoDroid synced 2024-11-07 15:20:36 +00:00

logcat init.d script: compat

This commit is contained in:
Christopher Roy Bratusek 2019-05-05 21:05:22 +02:00
parent 033517d93c
commit 6f4239ebdf

View File

@ -6,7 +6,13 @@ CURDATE=$(date +%Y%m%d-%I.%M.%S)
# wait until boot completed # wait until boot completed
until [ `getprop sys.boot_completed`. = 1. ]; do sleep 1; done until [ `getprop sys.boot_completed`. = 1. ]; do sleep 1; done
LOGDIR="/data/media/0/logcats" if [ -w /data/media/0 ]; then
LOGDIR="/data/media/0/logcats"
elif [ -w /storage/self/primary ]; then
LOGDIR="/storage/self/primary/logcats"
else
LOGDIR="/sdcard/logcats"
fi
echo "logcat init script" echo "logcat init script"
echo "Starting Automatic Cleaning at $(date +"%m-%d-%Y %H:%M:%S")" echo "Starting Automatic Cleaning at $(date +"%m-%d-%Y %H:%M:%S")"