author | llornkcor <llornkcor> | 2002-04-28 22:47:19 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-28 22:47:19 (UTC) |
commit | 28d8806d21ec8fbc806d80614fd496f6b5ca6b55 (patch) (unidiff) | |
tree | 6cfe74bb3ad852662a7e0854d5d589df25fd56ee | |
parent | 726d985ddb6a5c7eb25a48efdadb189eb38b9a2a (diff) | |
download | opie-28d8806d21ec8fbc806d80614fd496f6b5ca6b55.zip opie-28d8806d21ec8fbc806d80614fd496f6b5ca6b55.tar.gz opie-28d8806d21ec8fbc806d80614fd496f6b5ca6b55.tar.bz2 |
whoops
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index adcfb7f..f13d0c9 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp | |||
@@ -139,66 +139,65 @@ static const char *commonCmds[] = | |||
139 | "gzip", | 139 | "gzip", |
140 | "gunzip", | 140 | "gunzip", |
141 | "chgrp", | 141 | "chgrp", |
142 | "chown", | 142 | "chown", |
143 | "date", | 143 | "date", |
144 | "dd", | 144 | "dd", |
145 | "df", | 145 | "df", |
146 | "dmesg", | 146 | "dmesg", |
147 | "fuser", | 147 | "fuser", |
148 | "hostname", | 148 | "hostname", |
149 | "kill", | 149 | "kill", |
150 | "killall", | 150 | "killall", |
151 | "ln", | 151 | "ln", |
152 | "ping", | 152 | "ping", |
153 | "mount", | 153 | "mount", |
154 | "more", | 154 | "more", |
155 | "sort", | 155 | "sort", |
156 | "touch", | 156 | "touch", |
157 | "umount", | 157 | "umount", |
158 | "mknod", | 158 | "mknod", |
159 | "netstat", | 159 | "netstat", |
160 | */ | 160 | */ |
161 | 161 | ||
162 | "exit", | 162 | "exit", |
163 | NULL | 163 | NULL |
164 | }; | 164 | }; |
165 | 165 | ||
166 | 166 | ||
167 | Konsole::Konsole(QWidget* parent, const char* name, WFlags fl) : | 167 | Konsole::Konsole(QWidget* parent, const char* name, WFlags fl) : |
168 | QMainWindow(parent, name, fl) | 168 | QMainWindow(parent, name, fl) |
169 | { | 169 | { |
170 | QStrList args; | 170 | QStrList args; |
171 | init("/bin/ash",args); | 171 | init("/bin/sh",args); |
172 | // init("/bin/sh",args); | ||
173 | } | 172 | } |
174 | 173 | ||
175 | Konsole::Konsole(const char* name, const char* _pgm, QStrList & _args, int) | 174 | Konsole::Konsole(const char* name, const char* _pgm, QStrList & _args, int) |
176 | : QMainWindow(0, name) | 175 | : QMainWindow(0, name) |
177 | { | 176 | { |
178 | init(_pgm,_args); | 177 | init(_pgm,_args); |
179 | } | 178 | } |
180 | 179 | ||
181 | void Konsole::initCommandList() | 180 | void Konsole::initCommandList() |
182 | { | 181 | { |
183 | // qDebug("Konsole::initCommandList"); | 182 | // qDebug("Konsole::initCommandList"); |
184 | Config cfg("Konsole"); | 183 | Config cfg("Konsole"); |
185 | cfg.setGroup("Commands"); | 184 | cfg.setGroup("Commands"); |
186 | commonCombo->setInsertionPolicy(QComboBox::AtCurrent); | 185 | commonCombo->setInsertionPolicy(QComboBox::AtCurrent); |
187 | commonCombo->clear(); | 186 | commonCombo->clear(); |
188 | if (cfg.readEntry("Commands Set","FALSE") == "FALSE") { | 187 | if (cfg.readEntry("Commands Set","FALSE") == "FALSE") { |
189 | for (int i = 0; commonCmds[i] != NULL; i++) { | 188 | for (int i = 0; commonCmds[i] != NULL; i++) { |
190 | commonCombo->insertItem(commonCmds[i],i); | 189 | commonCombo->insertItem(commonCmds[i],i); |
191 | } | 190 | } |
192 | } else { | 191 | } else { |
193 | for (int i = 0; i < 100; i++) { | 192 | for (int i = 0; i < 100; i++) { |
194 | if (!(cfg.readEntry( QString::number(i),"")).isEmpty()) | 193 | if (!(cfg.readEntry( QString::number(i),"")).isEmpty()) |
195 | commonCombo->insertItem((cfg.readEntry( QString::number(i),""))); | 194 | commonCombo->insertItem((cfg.readEntry( QString::number(i),""))); |
196 | } | 195 | } |
197 | } | 196 | } |
198 | 197 | ||
199 | } | 198 | } |
200 | 199 | ||
201 | void Konsole::init(const char* _pgm, QStrList & _args) | 200 | void Konsole::init(const char* _pgm, QStrList & _args) |
202 | { | 201 | { |
203 | b_scroll = TRUE; // histon; | 202 | b_scroll = TRUE; // histon; |
204 | n_keytab = 0; | 203 | n_keytab = 0; |