summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/fixit.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/fixit.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/fixit.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/fixit.cpp b/noncore/apps/opie-console/fixit.cpp
index c14e35e..5ac7673 100644
--- a/noncore/apps/opie-console/fixit.cpp
+++ b/noncore/apps/opie-console/fixit.cpp
@@ -38,27 +38,24 @@ FixIt::FixIt() : QObject() {
38"s0:24:respawn:/sbin/getty 9600 ttyS0" 38"s0:24:respawn:/sbin/getty 9600 ttyS0"
39"#pd:5:respawn:/etc/sync/serialctl" 39"#pd:5:respawn:/etc/sync/serialctl"
40"" 40""
41"# Specify program to run on tty1" 41"# Specify program to run on tty1"
42"1:2:respawn:/sbin/getty 9600 tty1" 42"1:2:respawn:/sbin/getty 9600 tty1"
43"ln:345:respawn:survive -l 6 /sbin/launch" 43"ln:345:respawn:survive -l 6 /sbin/launch"
44"#qt:5:respawn:/sbin/qt" 44"#qt:5:respawn:/sbin/qt"
45"" 45""
46"# collie sp." 46"# collie sp."
47"sy::respawn:/sbin/shsync\n"; 47"sy::respawn:/sbin/shsync\n";
48} 48}
49 49
50FixIt::~FixIt() {
51}
52
53/* 50/*
54 * the retail Zaurus is broken in many ways 51 * the retail Zaurus is broken in many ways
55 * one is that pppd is listening on our port... 52 * one is that pppd is listening on our port...
56 * we've to stop it from that and then do kill(SIGHUP,1); 53 * we've to stop it from that and then do kill(SIGHUP,1);
57 */ 54 */
58void FixIt::fixIt() { 55void FixIt::fixIt() {
59 #ifndef EAST 56 #ifndef EAST
60 ::rename("/etc/inittab", QPEApplication::qpeDir() + "/etc/inittab" ); 57 ::rename("/etc/inittab", QPEApplication::qpeDir() + "/etc/inittab" );
61 QFile file( "/etc/inittab" ); 58 QFile file( "/etc/inittab" );
62 if ( file.open(IO_WriteOnly | IO_Raw ) ) { 59 if ( file.open(IO_WriteOnly | IO_Raw ) ) {
63 file.writeBlock(m_file,strlen(m_file) ); 60 file.writeBlock(m_file,strlen(m_file) );
64 } 61 }