summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ChangeLog1
-rw-r--r--core/launcher/opie-taskbar.control2
-rw-r--r--core/launcher/server.pro2
-rwxr-xr-xroot/etc/init.d/opie8
4 files changed, 7 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index a89404f..64300c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,9 @@
2004-??-?? The Opie Team <opie@handhelds.org>
+ * The launcher binary is now finally called 'opie' (mickeyl)
* Added Conversion tool for pim-data (eilers)
* Modifcation of the PIM API for providing generic use of OPimRecords. (eilers)
2004-25-04 The Opie Team <opie@handhelds.org>
* Released as Version 1.1.3 (devel)
diff --git a/core/launcher/opie-taskbar.control b/core/launcher/opie-taskbar.control
index 778aff3..d2d070c 100644
--- a/core/launcher/opie-taskbar.control
+++ b/core/launcher/opie-taskbar.control
@@ -1,8 +1,8 @@
Package: opie-taskbar
-Files: bin/qpe apps/Settings/Calibrate.desktop pics/launcher pics/devicebuttons/*.png plugins/applets/libsuspendapplet.so* plugins/applets/libhomeapplet.so* plugins/applets/liblogoutapplet.so* plugins/applets/librotateapplet.so* root/etc/init.d/opie
+Files: bin/opie apps/Settings/Calibrate.desktop pics/launcher pics/devicebuttons/*.png plugins/applets/libsuspendapplet.so* plugins/applets/libhomeapplet.so* plugins/applets/liblogoutapplet.so* plugins/applets/librotateapplet.so* root/etc/init.d/opie
Priority: required
Section: opie/system
Maintainer: Opie Team <opie@handhelds.org>
Architecture: arm
Depends: task-opie-minimal
Replaces: opie-rotation
diff --git a/core/launcher/server.pro b/core/launcher/server.pro
index 4e6a581..d4bf39b 100644
--- a/core/launcher/server.pro
+++ b/core/launcher/server.pro
@@ -72,13 +72,13 @@ INCLUDEPATH += $(OPIEDIR)/include $(OPIEDIR)/rsync
DEPENDPATH += $(OPIEDIR)/rsync
INCLUDEPATH += $(OPIEDIR)/noncore/settings/mediummount
DEPENDPATH += $(OPIEDIR)/noncore/settings/mediummount
LIBS += -lqpe -lopiecore2 -lopieui2 -lqrsync
-TARGET = qpe
+TARGET = opie
contains( $(CONFIG_TARGET_MACOSX), y ) {
LIBS += -lcrypt
}
include ( $(OPIEDIR)/include.pro )
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie
index d49498c..a723864 100755
--- a/root/etc/init.d/opie
+++ b/root/etc/init.d/opie
@@ -34,13 +34,13 @@ if [ -e /proc/cpuinfo ] ; then
if (grep -qi "HP Jornada 56x" /proc/cpuinfo) ; then
export QWS_DISPLAY=Transformed:Rot0:0
fi
fi
-if [ ! -x $OPIEDIR/bin/qpe ] ; then
+if [ ! -x $OPIEDIR/bin/opie ] ; then
echo Opie not installed
exit 0
fi
. /etc/profile
@@ -68,24 +68,24 @@ case $1 in
if [ -x $OPIEDIR/bin/opie-sh-ssh-askpass.sh ]; then
export SSH_ASKPASS=$OPIEDIR/bin/opie-sh-ssh-askpass.sh
fi
if ! killall -0 syslogd 2>/dev/null >/dev/null; then
echo Starting Opie....
- $SSHAGENT $OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
+ $SSHAGENT $OPIEDIR/bin/opie 2>/dev/null >/dev/null &
else
echo Starting Opie with syslog logging.....
- ( $SSHAGENT $OPIEDIR/bin/qpe 2>&1 | logger ) &
+ ( $SSHAGENT $OPIEDIR/bin/opie 2>&1 | logger ) &
fi
fi
;;
'stop')
echo "Killing Opie..."
- killall qpe
+ killall opie
killall opie-login
;;
*)
echo "usage: $0 { start | stop }"