summaryrefslogtreecommitdiff
path: root/scripts/update
Side-by-side diff
Diffstat (limited to 'scripts/update') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/update/opie-update.postinst5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/update/opie-update.postinst b/scripts/update/opie-update.postinst
index 02129d0..22d3628 100755
--- a/scripts/update/opie-update.postinst
+++ b/scripts/update/opie-update.postinst
@@ -4,12 +4,13 @@
#
# it's free so do not sell it
# (c) patrick s. vogtp <tille@handhelds.org>
IPKG_REMOVE="ipkg remove"
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
@@ -17,12 +18,15 @@ echo "start" > /tmp/update.log
for p in $pack; do
echo "rem. $p" >> /tmp/update.log
$IPKG_REMOVE $p
done
$IPKG_REMOVE qpe-pics
+$IPKG_REMOVE ipaqalarm
+$IPKG_REMOVE qpe2schedule
+$IPKG_REMOVE uschedule
#might help
sync
echo "Updating"
@@ -30,11 +34,12 @@ echo "Updating"
for p in $pack; do
echo "inst. $p" >> /tmp/update.log
$IPKG_INSTALL $p
done
$IPKG_INSTALL opie-pics
+$IPKG_INSTALL opiealarm
ipkg remove opie-update
echo "Starting Opie"
/etc/init.d/opie start || /etc/init.d/qpe start