Tekken a dit:
edzamber a dit:
Ok, dis moi si ça fonctionne [emoji6]
je viens de tester et non ça ne fonctionne pas plus :?
dommage ça aurait peut être pu me permettre de flasher la V13 :roll:
As tu dans le dossier system/etc/init.d un fichier qui s'appelle 00test
Si oui ouvre le et regarde si tu as ceci
#!/system/bin/sh
#Init.d Test
busybox mount -o remount,rw -t auto /system
busybox mount -o remount,rw -t auto /data
if [ -e /data/Test.log ]; then
rm /data/Test.log
fi
echo "Ryuinferno @ XDA 2012" > /data/Test.log
echo "Init.d is working !!!" >> /data/Test.log
echo "excecuted on $(date +"%d-%m-%Y %r" )
Ça fait appel à busybox donc Saftynet ne passera pas.
Modifie le fichier comme ceci
#!/system/bin/sh
#Init.d Test
mount -o remount,rw -t auto /system
mount -o remount,rw -t auto /data
if [ -e /data/Test.log ]; then
rm /data/Test.log
fi
echo "Ryuinferno @ XDA 2012" > /data/Test.log
echo "Init.d is working !!!" >> /data/Test.log
echo "excecuted on $(date +"%d-%m-%Y %r" )