summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2004-04-30 14:13:38 (UTC)
committer mickeyl <mickeyl>2004-04-30 14:13:38 (UTC)
commitca3f6e77dc7ccf5ebfff346d1866bbdfae802f48 (patch) (side-by-side diff)
tree74a80d520bec7a3eb0b7b1847d1a0e4e712b011b
parentb313bfcc63e972b1dfe059d91fe364d535478c7c (diff)
downloadopie-ca3f6e77dc7ccf5ebfff346d1866bbdfae802f48.zip
opie-ca3f6e77dc7ccf5ebfff346d1866bbdfae802f48.tar.gz
opie-ca3f6e77dc7ccf5ebfff346d1866bbdfae802f48.tar.bz2
too bad... there is lots of hardcoded stuff and compatibility cruft which
calls for "qpe". Let's postpone this for Opie 2.0 then.
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, 6 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 64300c8..a89404f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,5 @@
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)
diff --git a/core/launcher/opie-taskbar.control b/core/launcher/opie-taskbar.control
index d2d070c..778aff3 100644
--- a/core/launcher/opie-taskbar.control
+++ b/core/launcher/opie-taskbar.control
@@ -1,5 +1,5 @@
Package: opie-taskbar
-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
+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
Priority: required
Section: opie/system
Maintainer: Opie Team <opie@handhelds.org>
diff --git a/core/launcher/server.pro b/core/launcher/server.pro
index d4bf39b..4e6a581 100644
--- a/core/launcher/server.pro
+++ b/core/launcher/server.pro
@@ -75,7 +75,7 @@ INCLUDEPATH += $(OPIEDIR)/noncore/settings/mediummount
DEPENDPATH += $(OPIEDIR)/noncore/settings/mediummount
LIBS += -lqpe -lopiecore2 -lopieui2 -lqrsync
-TARGET = opie
+TARGET = qpe
contains( $(CONFIG_TARGET_MACOSX), y ) {
LIBS += -lcrypt
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie
index a723864..d49498c 100755
--- a/root/etc/init.d/opie
+++ b/root/etc/init.d/opie
@@ -37,7 +37,7 @@ if [ -e /proc/cpuinfo ] ; then
fi
-if [ ! -x $OPIEDIR/bin/opie ] ; then
+if [ ! -x $OPIEDIR/bin/qpe ] ; then
echo Opie not installed
exit 0
fi
@@ -71,10 +71,10 @@ case $1 in
if ! killall -0 syslogd 2>/dev/null >/dev/null; then
echo Starting Opie....
- $SSHAGENT $OPIEDIR/bin/opie 2>/dev/null >/dev/null &
+ $SSHAGENT $OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
else
echo Starting Opie with syslog logging.....
- ( $SSHAGENT $OPIEDIR/bin/opie 2>&1 | logger ) &
+ ( $SSHAGENT $OPIEDIR/bin/qpe 2>&1 | logger ) &
fi
fi
@@ -82,7 +82,7 @@ case $1 in
'stop')
echo "Killing Opie..."
- killall opie
+ killall qpe
killall opie-login
;;