Potresti provare ad aggiornare con quello script che feci, per una volta, e poi riprendere con gli OTA (se tornano a funzionare ovviamente
). Ricordo che usavo entrambi i metodi insieme senza problemi (cioè qualche volta con uno, qualche volta con l'laltro, in base a come mi era più comodo in quel momento), ma non ti garatisco che il telefono rimanga funzionante (un bel backup non fa mai male
).
Se usi la versione kk canale nightly dovrebbe essere questo:
#!/bin/bash
url=http://ftp.mozilla.org/pub/mozilla.org/b2g/nightly/latest-mozilla-central-flame-kk/
b2g_version=40.0a1
#clean
for dir in b2g gaia system resources gaia.zip b2g-$b2g_version.en-US.android-arm.tar.gz; do
if [ -d $dir ] || [ -f $dir ]; then
rm -r $dir;
fi
done
#download update files
wget $url/gaia.zip
wget $url/b2g-$b2g_version.en-US.android-arm.tar.gz
#prepare update
unzip gaia.zip
tar -zxvf b2g-$b2g_version.en-US.android-arm.tar.gz
mkdir system
mv b2g system/
mv gaia/profile/* system/b2g/
#update the phone
adb shell stop b2g
adb remount
adb shell rm -r /system/b2g
adb push system/b2g /system/b2g
adb shell start b2g