no icons in 2008.testing

Xavier Cremaschi omega.xavier at gmail.com
Wed Nov 12 11:59:55 CET 2008


A recent update to testing showed this bug still occurs in my situation.

So I just wanted to share a little update relative to downgrade commands 
from my previous mail : because opkg accepts more than one package's 
name as argument, we can speed up the whole thing by making far less calls.

Instead of :
>      cat down.txt | while read r; do
>          opkg -force-depends remove $r
>      done
which is sequential, you can do :
     cat down.txt | xargs opkg -force-depends remove

Instead of :
>      cat down.txt | while read r; do
>          opkg install $r
>      done
you can do :
     cat down.txt | xargs opkg install


Xavier.





More information about the community mailing list