summaryrefslogtreecommitdiff
path: root/noncore/apps
Unidiff
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/fixit.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/noncore/apps/opie-console/fixit.cpp b/noncore/apps/opie-console/fixit.cpp
index 5ac7673..57dba4c 100644
--- a/noncore/apps/opie-console/fixit.cpp
+++ b/noncore/apps/opie-console/fixit.cpp
@@ -62,15 +62,13 @@ void FixIt::fixIt() {
62 file.close(); 62 file.close();
63 ::kill( SIGHUP, 1 ); 63 ::kill( SIGHUP, 1 );
64 64
65 #else 65 #else
66 66
67 OProcess m_kill; 67 OProcess m_kill;
68 m_kill << "sh"; 68 m_kill << QPEApplication::qpeDir() + "/share/opie-console/sl6000_embedix_kill_0_1.sh";
69 m_kill << "-c";
70 m_kill << QString(QPEApplication::qpeDir() + "/share/opie-console/sl6000_embedix_kill_0_1.sh");
71 69
72 70
73 if ( !m_kill.start(OProcess::DontCare,OProcess::NoCommunication) ) { 71 if ( !m_kill.start(OProcess::DontCare,OProcess::NoCommunication) ) {
74 owarn << "could not execute kill script" << oendl; 72 owarn << "could not execute kill script" << oendl;
75 } else { 73 } else {
76 Global::statusMessage( tr("Fixing up Embedix")); 74 Global::statusMessage( tr("Fixing up Embedix"));
@@ -79,18 +77,16 @@ void FixIt::fixIt() {
79 #endif 77 #endif
80} 78}
81 79
82void FixIt::breakIt() { 80void FixIt::breakIt() {
83 #ifdef EAST 81 #ifdef EAST
84 OProcess m_restart; 82 OProcess m_restart;
85 m_restart << "sh"; 83 m_restart << QPEApplication::qpeDir() + "/share/opie-console/sl6000_embedix_restart_0_1.sh";
86 m_restart << "-c";
87 m_restart << QString(QPEApplication::qpeDir() + "/share/opie-console/sl6000_embedix_restart_0_1.sh");
88 84
89 85
90 if ( !m_restart.start() ) { 86 if ( !m_restart.start(OProcess::DontCare,OProcess::NoCommunication) ) {
91 owarn << "could not execute restart script" << oendl; 87 owarn << "could not execute restart script" << oendl;
92 } 88 }
93 89
94 #endif 90 #endif
95} 91}
96 92