Migrate from openbh 5.3 to openbh 5.4 ?

jek

Member
I own a vu+duo4K boxing
I want to migrate from OpenBH5.3 to OpenBH 54. Is there a tutorial to easily migrate with opkg ?
 

jek

Member
while :
do sleep 5
#### ${OPKG} list-upgradable |awk '{print $1}' | while read POI
awk '{print $1}' /media/hdd/listeOPKG54.txt | while read POI
do
${OPKG} clean && ${OPKG} update && ${OPKG} update all
${OPKG} install ${POI} --force-reinstall --force-overwrite
${OPKG} upgrade ${POI}
${OPKG} install ${POI} --force-reinstall --force-overwrite --nodeps --force-space
${OPKG} upgrade ${POI} --force-reinstall --force-overwrite --nodeps --force-space
done
done
 

Liquid

Staff member
Administrator
This method isn't supported. opkg should depend to other libraries. Probably with this method some core library get replaced and the tar failed.
Forget an online update and start from scratch.
 
Top