Hi guys,<br> I want to share my little bash script to update shr without distroying my existing kernel (a true 2.6.28).<br>It&#39;s really stupid, but maybe someone could find it interesting.<br><br>opkg list_upgradable &gt; upgradable<br>

<br>cat upgradable | awk &#39;{print $1}&#39; | grep -v kernel | grep -v Multiple | while read line<br><br>do echo &quot;installing pack $line&quot;<br>opkg install $line<br>done <br><br>I have a script called upgrade.sh and I run that one. If you don&#39;t want to update for example tangogps (or wathever) just add<br>

grep -v tangogps |<br>just before &quot;while read line&quot;...<br>my2cents<br>d<br>