summaryrefslogtreecommitdiff
authorschurig <schurig>2003-06-04 10:21:09 (UTC)
committer schurig <schurig>2003-06-04 10:21:09 (UTC)
commitf270a608c3396c076650f969c96b25d83cb7afe9 (patch) (side-by-side diff)
tree7b26a19084adf31a4bf4765eefe90c566ea35f25
parent37db2bc4ade2b96616a7a0c01041fc65b3ef4d16 (diff)
downloadopie-f270a608c3396c076650f969c96b25d83cb7afe9.zip
opie-f270a608c3396c076650f969c96b25d83cb7afe9.tar.gz
opie-f270a608c3396c076650f969c96b25d83cb7afe9.tar.bz2
ramses has no SD, but MMC
ramses has CF, but that slot is always occupied with a WLAN card
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/backup/backuprestore.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp
index 358f663..59e15a2 100644
--- a/noncore/settings/backup/backuprestore.cpp
+++ b/noncore/settings/backup/backuprestore.cpp
@@ -63,9 +63,18 @@ BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name)
//todo make less static here and use Storage class to get infos
if(totalLocations == 0){
+
+/* Ramses has a CF-Slot, but that one is internal and you have to dismount the
+ * the case. There's also almost always a WLAN card inserted there
+*/
+
backupLocations.insert("Documents", "/root/Documents");
+#if defined(QT_QWS_RAMSES)
+ backupLocations.insert("MMC", "/mnt/card");
+#else
backupLocations.insert("CF", "/mnt/cf");
backupLocations.insert("SD", "/mnt/card");
+#endif
}
else{
for(int i = 0; i < totalLocations; i++){