summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/update/opie-update.postinst2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/update/opie-update.postinst b/scripts/update/opie-update.postinst
index f761b67..02129d0 100755
--- a/scripts/update/opie-update.postinst
+++ b/scripts/update/opie-update.postinst
@@ -10,29 +10,31 @@ IPKG_INSTALL="ipkg install"
echo "Upating opie"
pack=`ipkg status | grep Package | grep -i opie | grep -v update | sed "s/Package://"`
echo "Stopping Opie"
/etc/init.d/opie stop || /etc/init.d/qpe stop
echo "start" > /tmp/update.log
for p in $pack; do
echo "rem. $p" >> /tmp/update.log
$IPKG_REMOVE $p
done
+$IPKG_REMOVE qpe-pics
#might help
sync
echo "Updating"
`ipkg update`
for p in $pack; do
echo "inst. $p" >> /tmp/update.log
$IPKG_INSTALL $p
done
+$IPKG_INSTALL opie-pics
ipkg remove opie-update
echo "Starting Opie"
/etc/init.d/opie start || /etc/init.d/qpe start