author | mickeyl <mickeyl> | 2004-04-30 12:33:12 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-30 12:33:12 (UTC) |
commit | 7829ac6b0577bf2398110f327a4b5e40435c105b (patch) (side-by-side diff) | |
tree | 9e40d4b69370ae3d8c5ad134c049d5e082a303eb | |
parent | 79e9cb4ea04d1e22249dd1e2b0522bee3cb370e3 (diff) | |
download | opie-7829ac6b0577bf2398110f327a4b5e40435c105b.zip opie-7829ac6b0577bf2398110f327a4b5e40435c105b.tar.gz opie-7829ac6b0577bf2398110f327a4b5e40435c105b.tar.bz2 |
yeah for consistency: s/qpe/opie/
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | core/launcher/opie-taskbar.control | 2 | ||||
-rw-r--r-- | core/launcher/server.pro | 2 | ||||
-rwxr-xr-x | root/etc/init.d/opie | 8 |
4 files changed, 7 insertions, 6 deletions
@@ -2,2 +2,3 @@ + * The launcher binary is now finally called 'opie' (mickeyl) * Added Conversion tool for pim-data (eilers) 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,3 +1,3 @@ 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 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 @@ -77,3 +77,3 @@ DEPENDPATH += $(OPIEDIR)/noncore/settings/mediummount LIBS += -lqpe -lopiecore2 -lopieui2 -lqrsync -TARGET = qpe +TARGET = opie 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 @@ -39,3 +39,3 @@ fi -if [ ! -x $OPIEDIR/bin/qpe ] ; then +if [ ! -x $OPIEDIR/bin/opie ] ; then echo Opie not installed @@ -73,6 +73,6 @@ case $1 in 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 @@ -84,3 +84,3 @@ case $1 in echo "Killing Opie..." - killall qpe + killall opie killall opie-login |