author | harlekin <harlekin> | 2004-04-22 19:00:32 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-04-22 19:00:32 (UTC) |
commit | e9d1a3bf70b2f79f47a4d5ad826712aa5d654d8e (patch) (side-by-side diff) | |
tree | 0d9d19ece0eaa5e6d637c24eebfe4f1f3c2f57fb | |
parent | 5c6499c56cd5c00603634546e6ba8c4d9da9741d (diff) | |
download | opie-e9d1a3bf70b2f79f47a4d5ad826712aa5d654d8e.zip opie-e9d1a3bf70b2f79f47a4d5ad826712aa5d654d8e.tar.gz opie-e9d1a3bf70b2f79f47a4d5ad826712aa5d654d8e.tar.bz2 |
do not activate support for the broken sharp rom by default
-rw-r--r-- | noncore/apps/opie-console/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/main.cpp b/noncore/apps/opie-console/main.cpp index f61f44e..92921ab 100644 --- a/noncore/apps/opie-console/main.cpp +++ b/noncore/apps/opie-console/main.cpp @@ -1,36 +1,36 @@ #include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <signal.h> #include <qfile.h> #include <qpe/qpeapplication.h> #include "mainwindow.h" -#define FSCKED_DISTRIBUTION 1 +// #define FSCKED_DISTRIBUTION 1 #ifdef FSCKED_DISTRIBUTION /* * The Zaurus rom */ class FixIt { public: FixIt(); ~FixIt(); void fixIt(); /* no real interested in implementing it */ void breakIt() { }; char* m_file; }; FixIt::FixIt() { /* the new inittab */ m_file = "#\n# /etc/inittab" "#" "" "# 0 - halt (Do NOT set initdefault to this)" "# 1 - Single user mode" "# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)" |