-rwxr-xr-x | scripts/update/opie-update.postinst | 2 | ||||
-rw-r--r-- | scripts/update/qpe-opie-update.control | 7 | ||||
-rwxr-xr-x | scripts/update/qpe-opie-update.postinst | 46 |
3 files changed, 54 insertions, 1 deletions
diff --git a/scripts/update/opie-update.postinst b/scripts/update/opie-update.postinst index 22d3628..695653e 100755 --- a/scripts/update/opie-update.postinst +++ b/scripts/update/opie-update.postinst | |||
@@ -5,3 +5,3 @@ | |||
5 | # it's free so do not sell it | 5 | # it's free so do not sell it |
6 | # (c) patrick s. vogtp <tille@handhelds.org> | 6 | # (c) patrick s. vogt <tille@handhelds.org> |
7 | 7 | ||
diff --git a/scripts/update/qpe-opie-update.control b/scripts/update/qpe-opie-update.control new file mode 100644 index 0000000..329754a --- a/dev/null +++ b/scripts/update/qpe-opie-update.control | |||
@@ -0,0 +1,7 @@ | |||
1 | Packagename: qpe-opie-update | ||
2 | Maintainer: Patrick S. Vogt <tille@handhelds.org> | ||
3 | Section: opie/system | ||
4 | Version: 0.9.1 | ||
5 | Description: Remove qtopia and install opie. Dummy package that removes qtopia | ||
6 | and installs opie, by removing everything and installing the same opie | ||
7 | packages. | ||
diff --git a/scripts/update/qpe-opie-update.postinst b/scripts/update/qpe-opie-update.postinst new file mode 100755 index 0000000..e06651f --- a/dev/null +++ b/scripts/update/qpe-opie-update.postinst | |||
@@ -0,0 +1,46 @@ | |||
1 | #!/bin/ash | ||
2 | # | ||
3 | # script to remove qtopiæ and install opie | ||
4 | # | ||
5 | # it's free so do not sell it | ||
6 | # (c) patrick s. vogt <tille@handhelds.org> | ||
7 | |||
8 | IPKG_REMOVE="ipkg remove" | ||
9 | IPKG_INSTALL="ipkg install" | ||
10 | |||
11 | echo "Upating Qtopia to Opie" | ||
12 | pack=`ipkg status | grep Package | grep -i qpe | sed "s/Package://"` | ||
13 | pack2=`ipkg status | grep Package | grep -i qpe | sed "s/Package://" | sed "s/qpe/opie/"` | ||
14 | |||
15 | echo "Stopping Qtopia" | ||
16 | /etc/init.d/qpe stop | ||
17 | |||
18 | echo "start" > /tmp/update.log | ||
19 | |||
20 | for p in $pack; do | ||
21 | echo "rem. $p" >> /tmp/update.log | ||
22 | $IPKG_REMOVE $p | ||
23 | done | ||
24 | $IPKG_REMOVE qpe-pics | ||
25 | $IPKG_REMOVE ipaqalarm | ||
26 | $IPKG_REMOVE qpe2schedule | ||
27 | $IPKG_REMOVE uschedule | ||
28 | |||
29 | #might help | ||
30 | sync | ||
31 | |||
32 | |||
33 | echo "Updating" | ||
34 | `ipkg update` | ||
35 | |||
36 | for p in $pack2; do | ||
37 | echo "inst. $p" >> /tmp/update.log | ||
38 | $IPKG_INSTALL $p | ||
39 | done | ||
40 | $IPKG_INSTALL opie-pics | ||
41 | $IPKG_INSTALL opiealarm | ||
42 | |||
43 | ipkg remove qpe-opie-update | ||
44 | |||
45 | echo "Starting Opie" | ||
46 | /etc/init.d/opie start || /etc/init.d/qpe start | ||