Commit 622d9310 authored by fuyanbin's avatar fuyanbin
Browse files

用于覆盖旧的cm311里的文件

parent 410e1d31
#!/system/bin/sh
# Script to start "softdetector probe service" on the device
#
echo "start softdetector probe service"
dataFile="/data/data/com.cmcc.mid.softdetector/lib/libpcapcmcc.so"
systemFile="/system/bin/libpcapcmcc.so"
while [ ! -f $dataFile ] && [ ! -f $systemFile ]
do
sleep 3;
done
sleep 1
if [ -f $dataFile ];then
echo "dataFile excute"
/data/data/com.cmcc.mid.softdetector/lib/libpcapcmcc.so
else
echo "systemFile excute"
/system/bin/libpcapcmcc.so
fi
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment