summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2006-02-06 13:40:26 (UTC)
committer mickeyl <mickeyl>2006-02-06 13:40:26 (UTC)
commitb5e868fd9f1dcc97c388f01f9b99ebfeb891133a (patch) (unidiff)
tree025a48bb1332c3114384b24979f01f51c5c3987a
parentc5dee755c8f72f83bad3279659b58e1bd4cf28e1 (diff)
downloadopie-b5e868fd9f1dcc97c388f01f9b99ebfeb891133a.zip
opie-b5e868fd9f1dcc97c388f01f9b99ebfeb891133a.tar.gz
opie-b5e868fd9f1dcc97c388f01f9b99ebfeb891133a.tar.bz2
odevice: tosa now uses corgi-bl. patch courtesy Dirk Opfer - thanks
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ChangeLog1
-rw-r--r--libopie2/opiecore/device/odevice_zaurus.cpp3
2 files changed, 1 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ccec044..8ff1be9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,24 +16,25 @@
16 * #1492 - Backup and Restore does not show list of backups to restore on start (hrw) 16 * #1492 - Backup and Restore does not show list of backups to restore on start (hrw)
17 * n.a. - remove hardcoded font size from wellenreiter (hrw) 17 * n.a. - remove hardcoded font size from wellenreiter (hrw)
18 * n.a. - added patch to build QT/E 2.3.10 with gcc 4.x.x (hrw) 18 * n.a. - added patch to build QT/E 2.3.10 with gcc 4.x.x (hrw)
19 * n.a. - make blue-pin UI resizable to looks good in any resolution (hrw) 19 * n.a. - make blue-pin UI resizable to looks good in any resolution (hrw)
20 * n.a. - fix a problem with vCard send to Sony Ericsson k600i (ar) 20 * n.a. - fix a problem with vCard send to Sony Ericsson k600i (ar)
21 * n.a. - add a patch to build Qt/E 2.3.10 on amd64 with gcc 4.x.x (ar) 21 * n.a. - add a patch to build Qt/E 2.3.10 on amd64 with gcc 4.x.x (ar)
22 * n.a. - Opie-console fallback to FixedFont settings from qpe.conf in config (hrw) 22 * n.a. - Opie-console fallback to FixedFont settings from qpe.conf in config (hrw)
23 * n.a. - Set version to 1.2.1 in About applet (hrw) 23 * n.a. - Set version to 1.2.1 in About applet (hrw)
24 24
25 Internal 25 Internal
26 -------- 26 --------
27 * libopiecore: /etc/oz_version renamed to /etc/openzaurus-version (hrw) 27 * libopiecore: /etc/oz_version renamed to /etc/openzaurus-version (hrw)
28 * libopiecore: SL6000 (tosa) now uses corgi-bl (Dirk Opfer)
28 29
29 2005-09-11Opie 1.2.1 30 2005-09-11Opie 1.2.1
30 31
31 32
32 New Features 33 New Features
33 ------------ 34 ------------
34 * OpieStumbler: Scans WiFi networks using the wireless extension scanning (skyhusker) 35 * OpieStumbler: Scans WiFi networks using the wireless extension scanning (skyhusker)
35 * Opie-Reader: Support for document formats ArriereGo and Reb, add flite output (tim,pohly) 36 * Opie-Reader: Support for document formats ArriereGo and Reb, add flite output (tim,pohly)
36 * Opie-Networksettings: Add support for wlan-ng devices and improve WEP handling (Dirk Opfer) 37 * Opie-Networksettings: Add support for wlan-ng devices and improve WEP handling (Dirk Opfer)
37 * Wellenreiter: Remove Joining networks - use OpieStumbler for that (mickeyl) 38 * Wellenreiter: Remove Joining networks - use OpieStumbler for that (mickeyl)
38 * Opie-Mobilemsg has gone unsupported - it never really worked and there will be a replacement (mickeyl) 39 * Opie-Mobilemsg has gone unsupported - it never really worked and there will be a replacement (mickeyl)
39 * Opie-Tabmanager has gone unsupported - it barely works and there is not much of a use of it anyway (mickeyl) 40 * Opie-Tabmanager has gone unsupported - it barely works and there is not much of a use of it anyway (mickeyl)
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp
index 8a7e252..28a1ccf 100644
--- a/libopie2/opiecore/device/odevice_zaurus.cpp
+++ b/libopie2/opiecore/device/odevice_zaurus.cpp
@@ -233,27 +233,24 @@ void Zaurus::init(const QString& cpu_info)
233 } else { 233 } else {
234 d->m_model = Model_Zaurus_SL5500; 234 d->m_model = Model_Zaurus_SL5500;
235 d->m_modelstr = "Unknown Zaurus"; 235 d->m_modelstr = "Unknown Zaurus";
236 } 236 }
237 237
238 // set path to backlight device in kernel 2.6 238 // set path to backlight device in kernel 2.6
239 switch ( d->m_model ) 239 switch ( d->m_model )
240 { 240 {
241 case Model_Zaurus_SLB600: // fallthrough 241 case Model_Zaurus_SLB600: // fallthrough
242 case Model_Zaurus_SL5500: 242 case Model_Zaurus_SL5500:
243 m_backlightdev = "/sys/class/backlight/locomo-backlight/"; 243 m_backlightdev = "/sys/class/backlight/locomo-backlight/";
244 break; 244 break;
245 case Model_Zaurus_SL6000:
246 m_backlightdev = "/sys/class/backlight/tosa-bl/";
247 break;
248 default: 245 default:
249 m_backlightdev = "/sys/class/backlight/corgi-bl/"; 246 m_backlightdev = "/sys/class/backlight/corgi-bl/";
250 } 247 }
251 248
252 // set initial rotation 249 // set initial rotation
253 switch( d->m_model ) 250 switch( d->m_model )
254 { 251 {
255 case Model_Zaurus_SL6000: // fallthrough 252 case Model_Zaurus_SL6000: // fallthrough
256 case Model_Zaurus_SLA300: 253 case Model_Zaurus_SLA300:
257 d->m_rotation = Rot0; 254 d->m_rotation = Rot0;
258 break; 255 break;
259 case Model_Zaurus_SLC3100: // fallthrough 256 case Model_Zaurus_SLC3100: // fallthrough