[MeeGo-dev] [Qt] When the patch for QML_ID will be available?

2011-04-26 Thread Tang, Shaofeng
Hello All,

The merge request #2592
https://qt.gitorious.org/qt/qt/merge_requests/2592
has been committed for a while on Qt, and isn't merged yet.
And we also voted for it on Nokia's forum.
This patch is very important to our team for automatically testing QML GUI 
application.

I wonder if anyone knows when it will be accepted?
Or if it has been rejected, please inform me.

Thanks & Best Regards
Shao-Feng
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines

[MeeGo-dev] How can I using the Accelerometer in MeeGo Tablet OS

2011-04-26 Thread Pai, Cary
Hi, All,

I have a project need to use the Accelerometer in MeeGo Tablet OS, I run the qt 
mobility example "accel" in ExoPC with MeeGo tablet 1.2 pre-alpha OS, but it 
shows the error message tell me "Accelerometer didn't start!", and tracing the 
code obviously the accelerometer didn't start normally, please tell me how can 
I start the accelerometer in MeeGo successfully, is there any settings that I 
need to set?

Best Regards.

Intel Software & Service Group

[cid:image001.jpg@01CC04D2.FC51BC00]

B1 #205 Tun-Hwa North Rd, Taipei, Taiwan

Desk

+886-2-2514-4603

Mobile

+886-987-369-617

E-Mail

cary@intel.com



<>

accel.pro
Description: accel.pro
/
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-i...@nokia.com)
**
** This file is part of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
**   * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
**   * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
**   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
** the names of its contributors may be used to endorse or promote
** products derived from this software without specific prior written
** permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
** $QT_END_LICENSE$
**
/

#include 
#include 

QTM_USE_NAMESPACE

QAccelerometer *accelerometer;

class AccelerometerFilter : public QAccelerometerFilter
{
public:
bool filter(QAccelerometerReading *reading)
{
qDebug() << "acceleration: "
 << QString().sprintf("%0.2f %0.2f %0.2f",
 reading->x(),
 reading->y(),
 reading->z());
return false; // don't store the reading in the sensor
}
};

int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);

QAccelerometer sensor;
accelerometer = &sensor;
AccelerometerFilter filter;
sensor.addFilter(&filter);
sensor.start();

if (!sensor.isActive()) {
qWarning("Accelerometer didn't start!");
return 1;
}

return app.exec();
}

___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines

Re: [MeeGo-dev] Fwd: [MeeGo-ivi] Kernel for 1.2

2011-04-26 Thread Clark, Joel

On 4/26/2011 Arjan wrote:
>there isn't really *the* ivi kernel.

I believe Nasa is referring to the kernel-adaptation-intel-automotive which is 
derived from the 2.6.37.6 MeeGo reference kernel.

___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] Fwd: [MeeGo-ivi] Kernel for 1.2

2011-04-26 Thread Arjan van de Ven

On 4/26/2011 5:54 PM, Nasa wrote:

Hi,

Following Kev suggestion...


there isn't really *the* ivi kernel.
Each platform (as per TSG decision) has the freedom to pick its own 
kernel version, as long as it is compatible with the reference kernel

and as long as security maintenance etc is done on it.


for various reasons (some technical, some not), the reference kernel is 
based on 2.6.37  (even though 2.6.39 will be released before MeeGo 1.2 is).
Specific platforms can choose obviously to have a different version; if 
a platform picks a newer version this is obviously within the 
compatibility requirement;
if it picks an older kernel it'll need to backport any and all critical 
features that we depend on.




___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


[MeeGo-dev] Fwd: [MeeGo-ivi] Kernel for 1.2

2011-04-26 Thread Nasa
Hi,

Following Kev suggestion...

Nasa
- Forwarded Message -
From: "Kevron Rees" 
To: meego-...@lists.meego.com
Sent: Tuesday, April 26, 2011 8:21:54 PM
Subject: Re: [MeeGo-ivi] Kernel for 1.2

This is probably a better meego-dev question.

On 04/26/2011 05:28 PM, Nasa wrote:
> Hi gang,
>
> I noted that the repo has kernel version 2.6.37-6, however,
> it doesn't seem to match the kernel of the same name from
> kernel.org.  In particular some of the hid drivers don't
> seem to match (check the ortek driver).  Will there be
> another sync with the main kernel before release?
>
> Thanks,
>
> Nasa
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] meego-app-video to play live stream

2011-04-26 Thread Ji, Jessica
Yes, live stream work well now. maybe missing codec plug-in. 

Best Regards 

Jessica.

Intel Asia-Pacific R&D Ltd.[INET] 8821-6598 


-Original Message-
From: meego-dev-boun...@meego.com [mailto:meego-dev-boun...@meego.com] On 
Behalf Of Brendan Le Foll
Sent: 2011年4月27日 4:03
To: Michelon, Philippe
Cc: meego-dev@meego.com
Subject: Re: [MeeGo-dev] meego-app-video to play live stream

On 26 April 2011 21:04, Niels Mayer  wrote:
> On Tue, Apr 26, 2011 at 10:11 AM, Michelon, Philippe
>  wrote:
>> Can I launch the qml application meego-app-video to playback a live stream > 
>> (rtsp)  and how ?
>>

Hi Philippe,

Should be no problem if it's based on playbin2, just give it the full
URI. If you have the correct plugins it will work correctly. At any
rate, the dbus based madeo-uplayer in devel:tv is able to play back
rtsp streams from youtube as below just fine.

For youtube streams as below you need both an Mpeg4 decoder and AAC
decoder GStreamer plugin. I tried it on my MeeGo 1.1 netbook and
madeo-uplayer and it worked just fine.

> A more general programming question is how can one get QtMobility
> video players to work with live (RTSP/3GP) streams?
>
> For example, given a link like
> rtsp://v5.cache3.c.youtube.com/CjYLENy73wIaLQkNvt4Qjs09qBMYJCAkFEIJbXYtZ29vZ2xlSARSBXdhdGNoYPjLnbXFuOLPTQw=/0/0/0/video.3gp
> from http://m.youtube.com/ how would one be able to send that link to
> meego-app-video (or banshee, or whatever player is setup forMeeGo)?
> Doesn't work

Works fine for me. It's just not working for you because you don't
have the right codecs. And we all know why we can't ship them ;-)  And
fedora aren't shipping them either! Can we please stop telling people
to install rpms from not just other distros but unofficial repos for
other distros? While this might be useful to some I don't believe it
has any place on the official MeeGo wiki, this is hardly supported
behaviour!

-- 
Brendan Le Foll
http://www.madeo.co.uk
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines

Re: [MeeGo-dev] Will clutter, mutter be configured to use gles in OBS?

2011-04-26 Thread Zhao, Juan J
On Tue, 2011-04-26 at 10:19 -0400, Cory T. Tusar wrote:
> > The comparison between es2gears and glxgears in mesa-demos can be
> one in
> > my opinion.
> 
> http://www.google.com/search?q=glxgears+is+not+a+benchmark 
People always don't care the fps that glxgears show because it uses
display list and fixed function to draw gears and all these is discarded
by OGL in latest version. As we know the HW of graphcs is programmable
process named vertex processor and fragment processor. Fixed function
won't show it's full ability.
But now you want to compare gles and gl, the test case should show the
same contents. So I told you that you can compare these two
applications. And in fact, although glxgears uses fixed function, in the
driver it will change the protocol to HW protocols and use vertex and
fragment processor to draw and render. 
So just for the comparison, these are two good examples.
Of course, you can also write some applications showing the same
contents and based on different graphics tool(I mean gl and gles) to
compare. 

-- 
*^_^*
Many thanks & Best Regards
SSD-OTC Meego Middleware & TV Team
Zhao Juan
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] meego-app-video to play live stream

2011-04-26 Thread Brendan Le Foll
On 26 April 2011 21:04, Niels Mayer  wrote:
> On Tue, Apr 26, 2011 at 10:11 AM, Michelon, Philippe
>  wrote:
>> Can I launch the qml application meego-app-video to playback a live stream > 
>> (rtsp)  and how ?
>>

Hi Philippe,

Should be no problem if it's based on playbin2, just give it the full
URI. If you have the correct plugins it will work correctly. At any
rate, the dbus based madeo-uplayer in devel:tv is able to play back
rtsp streams from youtube as below just fine.

For youtube streams as below you need both an Mpeg4 decoder and AAC
decoder GStreamer plugin. I tried it on my MeeGo 1.1 netbook and
madeo-uplayer and it worked just fine.

> A more general programming question is how can one get QtMobility
> video players to work with live (RTSP/3GP) streams?
>
> For example, given a link like
> rtsp://v5.cache3.c.youtube.com/CjYLENy73wIaLQkNvt4Qjs09qBMYJCAkFEIJbXYtZ29vZ2xlSARSBXdhdGNoYPjLnbXFuOLPTQw=/0/0/0/video.3gp
> from http://m.youtube.com/ how would one be able to send that link to
> meego-app-video (or banshee, or whatever player is setup forMeeGo)?
> Doesn't work

Works fine for me. It's just not working for you because you don't
have the right codecs. And we all know why we can't ship them ;-)  And
fedora aren't shipping them either! Can we please stop telling people
to install rpms from not just other distros but unofficial repos for
other distros? While this might be useful to some I don't believe it
has any place on the official MeeGo wiki, this is hardly supported
behaviour!

-- 
Brendan Le Foll
http://www.madeo.co.uk
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] meego-app-video to play live stream

2011-04-26 Thread Niels Mayer
On Tue, Apr 26, 2011 at 10:11 AM, Michelon, Philippe
 wrote:
> Can I launch the qml application meego-app-video to playback a live stream > 
> (rtsp)  and how ?
>

A more general programming question is how can one get QtMobility
video players to work with live (RTSP/3GP) streams?

For example, given a link like
rtsp://v5.cache3.c.youtube.com/CjYLENy73wIaLQkNvt4Qjs09qBMYJCAkFEIJbXYtZ29vZ2xlSARSBXdhdGNoYPjLnbXFuOLPTQw=/0/0/0/video.3gp
from http://m.youtube.com/ how would one be able to send that link to
meego-app-video (or banshee, or whatever player is setup forMeeGo)?
Doesn't work

In contrast my running Fedora's xbmc.org on on MeeGo handles all
manner of streamed media from podcasts and internet sites w/ no
problems, in any internet format I throw at it. But that's more
because I have
http://wiki.meego.com/MeeGo-Lem running and all manner of
free/nonfree/proprietary codecs installed.

For writing one's own apps from scratch, I' having having better luck
with MLT: http://lists.meego.com/pipermail/meego-dev/2011-March/482110.html
. It appears to have broad uptake by the open source community:
http://www.mltframework.org/twiki/bin/view/MLT/Projects

Some simple players using MLT in Gnome:
http://users.telenet.be/acp/fireswamp/ and Qt:
http://sourceforge.net/news/?group_id=96039&id=296772 (which I've
built on MeeGo -- needs QML integration though -- anybody want to
help?)

Niels
http://nielsmayer.com
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


[MeeGo-dev] meego-app-video to play live stream

2011-04-26 Thread Michelon, Philippe
Hi,

Can I launch the qml application meego-app-video to playback a live stream 
(rtsp)  and how ?

Thanks,

Philippe Michelon
   SSG Application Engineer
INTEL
   Telephone: +33 (0)6 77 94 88 91
   E-mail: philippe.miche...@intel.com

-
Intel Corporation SAS (French simplified joint stock company)
Registered headquarters: "Les Montalets"- 2, rue de Paris, 
92196 Meudon Cedex, France
Registration Number:  302 456 199 R.C.S. NANTERRE
Capital: 4,572,000 Euros

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines

Re: [MeeGo-dev] Will clutter, mutter be configured to use gles in OBS?

2011-04-26 Thread Cory T. Tusar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 04/26/2011 04:37 AM, Zhao, Juan J wrote:
> On Tue, 2011-04-26 at 10:29 +0200, Brendan Le Foll wrote:
>> Is there any benchmarks to show GLES performs better than GL in
>> platforms supporting both like the SGX535? 
> The comparison between es2gears and glxgears in mesa-demos can be one in
> my opinion.

http://www.google.com/search?q=glxgears+is+not+a+benchmark


- -- 
Cory T. Tusar
Senior Software Engineer
Videon Central, Inc.
2171 Sandy Drive
State College, PA 16803
(814) 235- x316
(814) 235-1118 fax


"There are two ways of constructing a software design.  One way is to
 make it so simple that there are obviously no deficiencies, and the
 other way is to make it so complicated that there are no obvious
 deficiencies."  --Sir Charles Anthony Richard Hoare

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (GNU/Linux)

iEYEARECAAYFAk221HkACgkQHT1tsfGwHJ+etwCdHlXFVUIhWSY1JwLTQ2pCsnad
HS0AnixxFyb8Twt0v6loLUg6me3Mp4Dt
=qcgC
-END PGP SIGNATURE-
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] [Accounts] AccountService implemented - Utility class to access service settings on an account

2011-04-26 Thread ramakrishna k n
Hi All,

My Last commit was implementation of AgAccountService object (GObject
implementation)

Now, I am committing AccountService class under accounts-qt. (Wrapper class
around AgAccountService)
Clients will use AccountService class methods to access service settings of
an account.

Requesting to kindly provide comments on this commit too.

https://gitorious.org/accounts-sso/accounts-qt/merge_requests/3

Wth Regards,
Rama

On Thu, Apr 7, 2011 at 7:05 PM, ramakrishna k n wrote:

> Hi All,
>
> I am Ramakrishna working as a developer in Nokia.
>
> I have added a new object - AgAccountService to accounts-glib.
> Below is a short summary for need of this new object.
>
> Current APIs in accounts-glib to access account service setting could be
> made much simpler.
> Current API design:
>
> // get the username from the global settings
> username = account->value("username");
> enabled = account->enabled();
>
> // get some e-mail settings
> account->selectService(Service("gmail"));
> imapServer = account->value("server");
> imapPort = account->value("port");
> enabled = account->enabled();
>
> With the above design, client has to select the service before it get/set
> the value. Risk is if the client misses calling selectService() method, it
> can get wrong value.
>
> The new AgAccountService class solves this overhead as shown below.
>
> accountService = new AccountService(account, Service("gmail"));
> imapServer = accountService->value("server");
> imapPort = accountService->value("port");
> // the next line returns true only if the account is enabled *and* the
> // "gmail" service is enabled on it
> emailEnabled = accountService->enabled();
>
> I have implemented the accounts-glib part of code to support the above
> design.
> Kindly review the code which is pushed on to a branch
> "account-service-impl" and pls provide ur inputs.
>
>
> https://gitorious.org/accounts-sso/accounts-glib/commits/account-service-impl
>
> With Regards,
> Rama
>
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines

Re: [MeeGo-dev] Will clutter, mutter be configured to use gles in OBS?

2011-04-26 Thread Brendan Le Foll
On 26 April 2011 10:37, Zhao, Juan J  wrote:
> On Tue, 2011-04-26 at 10:29 +0200, Brendan Le Foll wrote:
>> Is there any benchmarks to show GLES performs better than GL in
>> platforms supporting both like the SGX535?
> The comparison between es2gears and glxgears in mesa-demos can be one in
> my opinion.

And disregard the fact glxgears is not a benchmark?

-- 
Brendan Le Foll
http://www.madeo.co.uk
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] Will clutter, mutter be configured to use gles in OBS?

2011-04-26 Thread Zhao, Juan J
On Tue, 2011-04-26 at 10:29 +0200, Brendan Le Foll wrote:
> Is there any benchmarks to show GLES performs better than GL in
> platforms supporting both like the SGX535? 
The comparison between es2gears and glxgears in mesa-demos can be one in
my opinion.

-- 
*^_^*
Many thanks & Best Regards
SSD-OTC Meego Middleware & TV Team
Zhao Juan
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] Will clutter, mutter be configured to use gles in OBS?

2011-04-26 Thread Brendan Le Foll
On 26 April 2011 06:56, Carsten Munk  wrote:
> On Tue Apr 26 2011 05:38:56 AM CEST, Arjan van de Ven  
> wrote:
>
>> On 4/25/2011 7:28 PM, Zhao, Juan J wrote:
>> > On Mon, 2011-04-25 at 06:35 -0700, Arjan van de Ven wrote:
>> > > On 4/25/2011 1:24 AM, Zhao, Juan J wrote:
>> > > > Hi there,
>> > > >
>> > > > Is there any plane for clutter or mutter to be configured to
>> > > > use gles here?
>> > > >
>> > > > Would anybody share the experience about this?
>> > > >
>> > > why would there be a plan for this ???
>> > >
>> > For embeded system, gles will show better performance than gl desktop.
>> > And there are still some embeded platform choose mutter as its window
>> > manager. So I think this window manager should move to gles.
>>
>> pretty much all meego platforms use the Qt/QML stack, with netbook
>> having the core pieces still as legacy...
>> ... don't see the point mucking with the legacy with no upside and only
>> potential downsides
> At least the currently being pushed MeeGo TV reference UI seems to use 
> clutter/mutter still, so not totally legacy.
>
> /carsten

Carsten is correct TV reference UI (stripped XBMC), will use mutter
due to GDL capabilities implemented by it.

Is there any benchmarks to show GLES performs better than GL in
platforms supporting both like the SGX535?

-- 
Brendan Le Foll
http://www.madeo.co.uk
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] How to keep display on using gconftool-2

2011-04-26 Thread fathi.boudra
Hi,

It doesn't work anymore because MCE is deprecated for this kind of requirements 
(there's a thread on meego-architecture about this topic). btw, mcompositor 
doesn't use mce anymore.

Cheers,

Fathi

From: meego-dev-boun...@meego.com [meego-dev-boun...@meego.com] on behalf of 
Yanes Adrian (EXT-Tieto/Helsinki)
Sent: Monday, April 25, 2011 4:25 PM
To: meego-dev@meego.com
Subject: Re: [MeeGo-dev] How to keep display on using gconftool-2

Try this:

dbus-send --system --type=method_call --print-reply
--dest=com.nokia.mce /com/nokia/mce/request
com.nokia.mce.req_display_blanking_pause

Cheers,

Adrian.
On 04/25/2011 02:02 PM, ext dimpy.adhik...@nokia.com wrote:
> Hi,
>
> I am able to wake up the display by using the below command. But after few 
> seconds it is again getting blanked. Is there any way to keep the display on 
> forever?
>
> Regards
> Dimpy
>
>> -Original Message-
>> From: ext Dumez, Christophe [mailto:christophe.du...@intel.com]
>> Sent: Monday, April 25, 2011 3:37 PM
>> To: Adhikary Dimpy (Nokia-SD/Bangalore); meego-dev@meego.com
>> Subject: RE: How to keep display on using gconftool-2
>>
>> Hi,
>>
>> I believe the following should work:
>> dbus-send --print-reply --system --dest=com.nokia.mce
>> /com/nokia/mce/request com.nokia.mce.request.req_tklock_mode_change
>> string:unlocked
>>
>> Kr,
>> Chris.
>>
>> -Original Message-
>> From: meego-dev-boun...@meego.com [mailto:meego-dev-boun...@meego.com]
>> On Behalf Of dimpy.adhik...@nokia.com
>> Sent: Monday, April 25, 2011 9:30 AM
>> To: meego-dev@meego.com
>> Subject: [MeeGo-dev] How to keep display on using gconftool-2
>>
>> Hello,
>>
>> I need help to keep display on forever on N900 h/w.
>>
>> I am using the following command for setting the display:
>> gconftool-2 --set --type=int
>> /system/osso/dsm/display/inhibit_blank_mode 3
>>
>> But this is not working, display is on for around 20 secs. Can anyone
>> suggest me how to solve this?
>>
>> Regards
>> Dimpy
>> ___
>> MeeGo-dev mailing list
>> MeeGo-dev@meego.com
>> http://lists.meego.com/listinfo/meego-dev
>> http://wiki.meego.com/Mailing_list_guidelines
>> -
>> Intel Finland Oy
>> Registered Address: PL 281, 00181 Helsinki
>> Business Identity Code: 0357606 - 4
>> Domiciled in Helsinki
>>
>> This e-mail and any attachments may contain confidential material for
>> the sole use of the intended recipient(s). Any review or distribution
>> by others is strictly prohibited. If you are not the intended
>> recipient, please contact the sender and delete all copies.
>
> ___
> MeeGo-dev mailing list
> MeeGo-dev@meego.com
> http://lists.meego.com/listinfo/meego-dev
> http://wiki.meego.com/Mailing_list_guidelines

___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines