author | mickeyl <mickeyl> | 2004-04-30 12:33:12 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-30 12:33:12 (UTC) |
commit | 7829ac6b0577bf2398110f327a4b5e40435c105b (patch) (unidiff) | |
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
@@ -1,5 +1,6 @@ | |||
1 | 2004-??-??The Opie Team <opie@handhelds.org> | 1 | 2004-??-??The Opie Team <opie@handhelds.org> |
2 | 2 | ||
3 | * The launcher binary is now finally called 'opie' (mickeyl) | ||
3 | * Added Conversion tool for pim-data (eilers) | 4 | * Added Conversion tool for pim-data (eilers) |
4 | * Modifcation of the PIM API for providing generic use of OPimRecords. (eilers) | 5 | * Modifcation of the PIM API for providing generic use of OPimRecords. (eilers) |
5 | 6 | ||
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,5 +1,5 @@ | |||
1 | Package: opie-taskbar | 1 | Package: opie-taskbar |
2 | 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 | 2 | 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 |
3 | Priority: required | 3 | Priority: required |
4 | Section: opie/system | 4 | Section: opie/system |
5 | Maintainer: Opie Team <opie@handhelds.org> | 5 | Maintainer: Opie Team <opie@handhelds.org> |
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 | |||
@@ -75,7 +75,7 @@ INCLUDEPATH += $(OPIEDIR)/noncore/settings/mediummount | |||
75 | DEPENDPATH += $(OPIEDIR)/noncore/settings/mediummount | 75 | DEPENDPATH += $(OPIEDIR)/noncore/settings/mediummount |
76 | 76 | ||
77 | LIBS += -lqpe -lopiecore2 -lopieui2 -lqrsync | 77 | LIBS += -lqpe -lopiecore2 -lopieui2 -lqrsync |
78 | TARGET = qpe | 78 | TARGET = opie |
79 | 79 | ||
80 | contains( $(CONFIG_TARGET_MACOSX), y ) { | 80 | contains( $(CONFIG_TARGET_MACOSX), y ) { |
81 | LIBS += -lcrypt | 81 | LIBS += -lcrypt |
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 | |||
@@ -37,7 +37,7 @@ if [ -e /proc/cpuinfo ] ; then | |||
37 | fi | 37 | fi |
38 | 38 | ||
39 | 39 | ||
40 | if [ ! -x $OPIEDIR/bin/qpe ] ; then | 40 | if [ ! -x $OPIEDIR/bin/opie ] ; then |
41 | echo Opie not installed | 41 | echo Opie not installed |
42 | exit 0 | 42 | exit 0 |
43 | fi | 43 | fi |
@@ -71,10 +71,10 @@ case $1 in | |||
71 | 71 | ||
72 | if ! killall -0 syslogd 2>/dev/null >/dev/null; then | 72 | if ! killall -0 syslogd 2>/dev/null >/dev/null; then |
73 | echo Starting Opie.... | 73 | echo Starting Opie.... |
74 | $SSHAGENT $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & | 74 | $SSHAGENT $OPIEDIR/bin/opie 2>/dev/null >/dev/null & |
75 | else | 75 | else |
76 | echo Starting Opie with syslog logging..... | 76 | echo Starting Opie with syslog logging..... |
77 | ( $SSHAGENT $OPIEDIR/bin/qpe 2>&1 | logger ) & | 77 | ( $SSHAGENT $OPIEDIR/bin/opie 2>&1 | logger ) & |
78 | fi | 78 | fi |
79 | fi | 79 | fi |
80 | 80 | ||
@@ -82,7 +82,7 @@ case $1 in | |||
82 | 82 | ||
83 | 'stop') | 83 | 'stop') |
84 | echo "Killing Opie..." | 84 | echo "Killing Opie..." |
85 | killall qpe | 85 | killall opie |
86 | killall opie-login | 86 | killall opie-login |
87 | 87 | ||
88 | ;; | 88 | ;; |