Stürzt das System nach Updates oder einem Versionsupgrade ab hilft bisweilen folgendes:

init 4
opkg update
for f in `opkg list-installed`; do if [ "$f" != "-" -a "`echo $f | grep -c "^[0-9].*"`" -eq 0 ]; then opkg install $f --force-reinstall; fi; done
reboot