author | hrw <hrw> | 2006-01-23 13:33:31 (UTC) |
---|---|---|
committer | hrw <hrw> | 2006-01-23 13:33:31 (UTC) |
commit | dccddc207399669495ec0f5b4c6faa0d5159dc87 (patch) (side-by-side diff) | |
tree | fa9cfb30b34d67a20bf11dd6d88c01596b3e4aeb /libopie2 | |
parent | d5a4ddcb27db77d41de3f6a66bef4227c33d925e (diff) | |
download | opie-dccddc207399669495ec0f5b4c6faa0d5159dc87.zip opie-dccddc207399669495ec0f5b4c6faa0d5159dc87.tar.gz opie-dccddc207399669495ec0f5b4c6faa0d5159dc87.tar.bz2 |
libopiecore: /etc/oz_version renamed to /etc/openzaurus-version
-rw-r--r-- | libopie2/opiecore/device/odevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiecore/device/odevice.cpp b/libopie2/opiecore/device/odevice.cpp index 62bb68a..7b99eb4 100644 --- a/libopie2/opiecore/device/odevice.cpp +++ b/libopie2/opiecore/device/odevice.cpp @@ -53,49 +53,49 @@ #include <opie2/okeyfilter.h> #include <opie2/oresource.h> /* STD */ #include <fcntl.h> #include <math.h> #include <stdlib.h> #include <signal.h> #include <sys/ioctl.h> #include <sys/time.h> #include <unistd.h> #ifndef QT_NO_SOUND #include <linux/soundcard.h> #endif namespace Opie { namespace Core { static const char* PATH_PROC_CPUINFO = "/proc/cpuinfo"; /* STATIC and common implementation */ /* EXPORT */ ODistribution distributions[] = { { System_Familiar, "FamiliarLinux", "/etc/familiar-version" }, - { System_OpenZaurus, "OpenZaurus", "/etc/oz_version" }, + { System_OpenZaurus, "OpenZaurus", "/etc/openzaurus-version" }, { System_OpenEmbedded, "OpenEmbedded", "/etc/oe-version" }, { System_Unknown, "Linux", "/etc/issue" }, }; /* EXPORT */ bool isQWS(){ return qApp ? ( qApp->type() == QApplication::GuiServer ) : false; } /* EXPORT */ QCString makeChannel ( const char *str ){ if ( str && !::strchr ( str, '/' )) return QCString ( "QPE/Application/" ) + str; else return str; } /* Now the default implementation of ODevice */ struct default_button default_buttons [] = { { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), "devicebuttons/z_calendar", "datebook", "nextView()", |