On Thu, Jan 7, 2010 at 11:31 PM, Marcus Bauer marcus.ba...@gmail.com wrote:
On Wed, 6 Jan 2010 23:36:21 +0200
Risto H. Kurppa ri...@kurppa.fi wrote:
The community shall be the judge and point me where did I go wrong.
The community did already: Risto Kurppa, you have been sending me your
2010/1/8 Michael 'Mickey' Lauer mic...@vanille-media.de
Am Donnerstag, den 07.01.2010, 21:57 +0100 schrieb Michal Brzozowski:
Sorry this has been documented somewhere. I'm playing with the
'Display' resource, and I'm totally confused.
I can understand that. The semantics of the Display
In The Name Of God The compassionate merciful
hello;
1 - There is an option that lets tangogps users selecting using Google sat
maps , but they have 2 problems :
A - Quality of pictures in Tangogps is not the same as Google apps . for
example check this
any chance to draw some attention on the following?
Thanks
Tony
-- Forwarded message --
From: Tony Berth tonybe...@googlemail.com
Date: Wed, Jan 6, 2010 at 7:07 PM
Subject: dfu_download error -110
To: List for Openmoko community discussion community@lists.openmoko.org
when I
On Fri, Jan 08, 2010 at 11:01:23AM +0200, Tony Berth wrote:
any chance to draw some attention on the following?
Thanks
Tony
can you try with newer qi?
http://build.shr-project.org/shr-unstable/images/om-gta02/qi-s3c2442-1.0.2-r0+gitr0+c38b062a609f1442e6a9e13005cfbdfd59a5ac0d.udfu
Cheers,
Hi,
Le 08/01/2010 09:31, dehqan65 a écrit :
2 - In which issues Tangogps is better than Navit ?
IMO, they both serve different purposes.
Tango use raster maps. It's very fast and very efficient at displaying
your position and/or track on a raster map.
Navit use vector maps. Maps are drawn in
Hi dehqan65,
please follow standard mailing list etiquettes and use a proper name.
On Fri, Jan 08, 2010 at 12:01:19PM +0330, dehqan65 wrote:
In The Name Of God The compassionate merciful
I'm not sure whether you know that at least I and probably many other people
just stop reading after this
In The Name of Myself
Hi Dehqan
1 - Tangogps has an option that let us to use google sat maps , Can google
sat maps be used with Navit ?
no they can't, because tangogps uses images and navit uses vector data
this is also why the maps for navit are a lot smaller, but scrolling and
zooming takes
2010/1/8 Laszlo KREKACS laszlo.krekacs.l...@gmail.com:
What I fear about N900 is that it always stays as one single high-end
model to nokia.
There were always single model in the past: n700, n800, n810
Huh? That looks like 3 models to me. And the N900 makes 4.
(Note that n700 should be
Hi,
new images of QtMoko are released! They can be downloaded from sourceforge as
usually [1].
Thank you for your efforts!
Is there any upgrade procedure?
Looking at http://qtmoko.org/wiki/Update only the 14-15 seems to exist.
Again, thank you very much.
--
/_\ The ASCII
On Wed, Jan 6, 2010 at 2:21 AM, Martin Jansa martin.ja...@gmail.com wrote:
3) update Qi with dfu-util
qi built here
http://build.shr-project.org/shr-unstable/images/om-gta02/
is still using jffs2 in kernel params
but you can you binary from here
Hi,
On Fri, Jan 08, 2010 at 10:10:49AM +, Neil Jerram wrote:
Doesn't the N900 use the standard Debian archive? (I only know that
part of the community has pushed for that for a long time...)
I don't know about that.
If it does, the question becomes whether the e libraries are in Debian.
Tony Berth tonybe...@googlemail.com writes:
when I tried to flash my FR with the latest SHR and after the kernel
was successfully installed, I got (somewhere in the middle of the
process):
dfu_download error -110
It's usually suggested to try another usb-cable/port/no hub etc. Also
make sure
On Fri, 8 Jan 2010 09:12:45 +0100
Laszlo KREKACS laszlo.krekacs.l...@gmail.com wrote:
On Thu, Jan 7, 2010 at 11:31 PM, Marcus Bauer
marcus.ba...@gmail.com wrote:
On Wed, 6 Jan 2010 23:36:21 +0200
Risto H. Kurppa ri...@kurppa.fi wrote:
The community shall be the judge and point me where
Hi Joseph,
thanks for your words, they are very much appreciated!
Marcus
On Thu, 7 Jan 2010 23:48:54 +
Joseph Reeves iknowjos...@gmail.com wrote:
I have founded tangogps and spent over 2000 hours of development on
it so quite naturally I am the SABDFL of tangogps. And it is a
Hi,
I am about to write my own little GPS application in Qt and try to connect to
FixStatusChanged signal from Gypsy but have the following problem
Code snippet:
...
deviceInterface = new QDBusInterface(org.freedesktop.Gypsy,
/org/freedesktop/Gypsy/default, org.freedesktop.Gypsy.Device,
On Friday 08 January 2010 11:10:49 Neil Jerram wrote:
2010/1/8 Laszlo KREKACS laszlo.krekacs.l...@gmail.com:
What I fear about N900 is that it always stays as one single high-end
model to nokia.
There were always single model in the past: n700, n800, n810
Huh? That looks like 3 models
Hi,
I am about to write my own little GPS application in Qt and try to connect
to FixStatusChanged signal from Gypsy but have the following problem
Code snippet:
...
deviceInterface = new QDBusInterface(org.freedesktop.Gypsy,
/org/freedesktop/Gypsy/default, org.freedesktop.Gypsy.Device,
On Friday 08 January 2010 12:52:14 Christian Rüb wrote:
Hi,
I am about to write my own little GPS application in Qt and try to connect
to FixStatusChanged signal from Gypsy but have the following problem
Code snippet:
...
deviceInterface = new QDBusInterface(org.freedesktop.Gypsy,
In Qt you must connect a signal to a slot.
Looking your code :
connect(deviceInterface, SIGNAL(FixStatusChanged(int)), this,
SIGNAL(fixChanged(int)));
You try to connect a signal to a signal ! It should be :
connect(deviceInterface, SIGNAL(FixStatusChanged(int)), this,
SLOT(fixChanged(int)));
On Friday, 8. January 2010 13:01:40 Christophe M wrote:
Hi,
I am about to write my own little GPS application in Qt and try to connect
to FixStatusChanged signal from Gypsy but have the following problem
Code snippet:
...
deviceInterface = new QDBusInterface(org.freedesktop.Gypsy,
Hi,
thanks for your reply, but it is possible to connect a signal to a signal [1]
and that is exactly what I want.
It is even possible to connect a signal directly to another signal.
[1] http://doc.trolltech.com/4.6/signalsandslots.html
On Friday, 8. January 2010 13:27:32 Mickael Labrousse
On Friday 08 Jan 2010 09:20:32 Jens Seidel wrote:
On Fri, Jan 08, 2010 at 12:01:19PM +0330, dehqan65 wrote:
In The Name Of God The compassionate merciful
I'm not sure whether you know that at least I and probably many other
people just stop reading after this line. I strongly suggest that
I didn't know, my bad ;)
Christian Rüb a écrit :
Hi,
thanks for your reply, but it is possible to connect a signal to a signal [1]
and that is exactly what I want.
It is even possible to connect a signal directly to another signal.
[1] http://doc.trolltech.com/4.6/signalsandslots.html
2010/1/8 Jens Seidel jenssei...@users.sf.net:
That's also not a religious list.
In the name of religious equality: Thats true. So religious
collocations should not be a thing to comment. :) I think dehqan
behaves quite fine on this list.
Cheers,
Fabian
and I almost always top-post, so what :)
2010/1/8 Fabian Schölzel fabian.schoel...@googlemail.com
2010/1/8 Jens Seidel jenssei...@users.sf.net:
That's also not a religious list.
In the name of religious equality: Thats true. So religious
collocations should not be a thing to comment. :) I
Hello everyone,
first of all I like to thank you for this excellent distro.
I had a couple of problems (with only one solution):
-I can't boot regular rev5 from uSD (the process hangs up at something
like 95% and stays there forever) so I have to use the developer
version (which works well;-));
2010/1/8 Yorick Moko yorickm...@gmail.com:
and I almost always top-post, so what :)
So i'm trying middle posting right now! ;)
I made a joke about his In the name of... heading, but I don't care what
people write
to me it's about the same as yo nigga biatches, whats up?;
not really my kind
(Maybe thats enough OT for now :) )
This isn't an OT list, thank the lord. We do use apostrophes though! ;-)
Joseph
2010/1/8 Fabian Schölzel fabian.schoel...@googlemail.com:
2010/1/8 Yorick Moko yorickm...@gmail.com:
and I almost always top-post, so what :)
So i'm trying middle posting
On Fri, Jan 8, 2010 at 06:40, dehqan65 dehqa...@gmail.com wrote:
In The Name Of God The compassionate merciful
hello;
1 - Tangogps has an option that let us to use google sat maps , Can google
sat maps be used with Navit ?
2- To set up route , in this step after selecting country (Iran) ,
On Fri, Jan 8, 2010 at 11:10 AM, Neil Jerram neiljer...@googlemail.com wrote:
From the same point of view, I expect that further expansion of this
platform will depend massively on whether N900 is successful.
Firstly, whether it sells in large numbers; secondly, whether Nokia
estimate that
[...]
I also doubt if it runs smoothly on a weaker device (processor-wise). Today
on the train I saw a guy with nokia N900. He was reading some texts on it.
Oh dear, the scrolling was awesomely laggish. As an openmoko user I
know a bit about laggish scrolling;-) It is really sad such a highend
Am Freitag, 8. Januar 2010 schrieb Christophe M:
Hi,
I am about to write my own little GPS application in Qt and try to connect
to FixStatusChanged signal from Gypsy but have the following problem
Code snippet:
...
deviceInterface = new QDBusInterface(org.freedesktop.Gypsy,
Am Freitag, 8. Januar 2010 schrieb Michael Zanetti:
On Friday 08 January 2010 12:52:14 Christian Rüb wrote:
Hi,
I am about to write my own little GPS application in Qt and try to connect
to FixStatusChanged signal from Gypsy but have the following problem
Code snippet:
...
Hi,
Just FYI to the community list, as slowness has been one of the
biggest problems with Neo. Quite nice speedups are coming:
http://lists.openmoko.org/pipermail/openmoko-kernel/2010-January/010811.html
(performance testing by Gennady Kupava)
Apparently, and unfortunately, no-one had really
On Fri, Jan 8, 2010 at 11:07 AM, Martin Jansa martin.ja...@gmail.comwrote:
On Fri, Jan 08, 2010 at 11:01:23AM +0200, Tony Berth wrote:
any chance to draw some attention on the following?
Thanks
Tony
can you try with newer qi?
On Fri, Jan 8, 2010 at 1:32 PM, Paul Fertser fercer...@gmail.com wrote:
Tony Berth tonybe...@googlemail.com writes:
when I tried to flash my FR with the latest SHR and after the kernel
was successfully installed, I got (somewhere in the middle of the
process):
dfu_download error -110
On Wed, Jan 6, 2010 at 9:07 AM, Tony Berth tonybe...@googlemail.com wrote:
when I tried to flash my FR with the latest SHR and after the kernel was
successfully installed, I got (somewhere in the middle of the process):
dfu_download error -110
just... making sure. your root when you do this
Hello, I want compile PhoneME Advanced, also want make this with qtmoko
toolchain, but when I want compile pcsl show the next error:
/opt/toolchains/arm920t-eabi/bin/ ../lib/gcc/arm-linux-gnueabi/4.3.2/cc1:
error while loading shared libraries: libmpfr.so.1: cannot open shared
object file: No
2010/1/4 William Kenworthy bi...@iinet.net.au:
Nokia n900 - probably the best choice at this time.
Probably, but to be more precise not yet instead of at this time.
It's the only one that seems to have realistic possibility of some day
having a free distribution running with all features
On Fri, Jan 08, 2010 at 08:25:29PM +0200, Tony Berth wrote:
On Fri, Jan 8, 2010 at 11:07 AM, Martin Jansa martin.ja...@gmail.comwrote:
can you try with newer qi?
http://build.shr-project.org/shr-unstable/images/om-gta02/qi-s3c2442-1.0.2-r0+gitr0+c38b062a609f1442e6a9e13005cfbdfd59a5ac0d.udfu
Tony Berth tonybe...@googlemail.com writes:
Tony Berth tonybe...@googlemail.com writes:
when I tried to flash my FR with the latest SHR and after the kernel
was successfully installed, I got (somewhere in the middle of the
process):
dfu_download error -110
Esteban Monge wrote:
/opt/toolchains/arm920t-eabi/bin/ ../lib/gcc/arm-linux-gnueabi/4.3.2/cc1:
error while loading shared libraries: libmpfr.so.1: cannot open shared
object file: No such file or directory
Same error here when i switched from 32bit-64bit. I seems that the debian
toolchain
On Mon, Jan 4, 2010 at 7:24 PM, Jan Henkins lt;j...@henkins.za.netgt; wrote:
Hello Roberto,
I seem to have a similar issue. In my case my FR does not read SD cards,
and give the same error messages as above until the kernel simply disables
and removes the mmcblk0 device. I seem to remember that
Thanks Radek, I use Debian 64bits, copy the files and works good.
Also I must make a symbolic link
for arm-linux-gcc to gcc, but gcc works good except by the problem with
cc1.
This part i dont understand. Can you please more specify what you try to do?
The toolchain works with
On Fri, Jan 8, 2010 at 8:32 PM, jeremy jozwik jerjoz.for...@gmail.comwrote:
On Wed, Jan 6, 2010 at 9:07 AM, Tony Berth tonybe...@googlemail.com
wrote:
when I tried to flash my FR with the latest SHR and after the kernel was
successfully installed, I got (somewhere in the middle of the
On Fri, Jan 8, 2010 at 9:11 PM, Paul Fertser fercer...@gmail.com wrote:
Tony Berth tonybe...@googlemail.com writes:
Tony Berth tonybe...@googlemail.com writes:
when I tried to flash my FR with the latest SHR and after the
kernel
was successfully installed, I got (somewhere
In The Name Of God The compassionate merciful
Hello , The above sentence is regular phrase that we use to remember God
anytime in any letter/post /work . to remember that we are made by someone
who is compassionate merciful unique and that we are nothing against him
.more info read quran . of
On Sat, 9 Jan 2010 00:01:22 +0330
dehqan65 dehqa...@gmail.com wrote:
Anyway some questions remained :
1 - There is an option that lets tangogps users selecting using
Google sat maps , but some problems :
A - Is not using google maps under TangoGPS against google's EULA ?
You have to ask a
Dave Ball wrote:
What's the yard stick for measuring against here? I.e. are we talking
about one-off from digikey/farnell, samples direct from the
manufacturer, or limited-run (couple of hundreds) quantities?
For the full process from RD to mass production, you need to have
channels for
On Fri, Jan 8, 2010 at 7:23 PM, Timo Jyrinki timo.jyri...@gmail.com wrote:
Hi,
Just FYI to the community list, as slowness has been one of the
biggest problems with Neo. Quite nice speedups are coming:
http://lists.openmoko.org/pipermail/openmoko-kernel/2010-January/010811.html
Timo Jyrinki wrote:
Disabling kernel debug
features and pre-empt has resulted eg. these kind of improvements
(from IRC, #openmoko-fi):
- boot time 68.5% of original
- apt-cache search nano 20s - 14.8s
- emacs -f kill-emacs 3.8s - 2.2s
Here are mine numbers on QtMoko:
kernel size:
old: 1
On Fri, Jan 8, 2010 at 1:35 PM, Timo Jyrinki timo.jyri...@gmail.com wrote:
2010/1/4 William Kenworthy bi...@iinet.net.au:
Nokia n900 - probably the best choice at this time.
Probably, but to be more precise not yet instead of at this time.
It's the only one that seems to have realistic
On Fri, Jan 8, 2010 at 2:28 PM, Radek Polak pson...@seznam.cz wrote:
Here are mine numbers on QtMoko:
kernel size:
old: 1 833 952
new: 1 660 364
boot time
old: 1min 58s
new: 1min 30s
huzzah! lets get this piped in asap. would this help with application load time?
On Fri, Jan 08, 2010 at 10:29:31PM +0200, Tony Berth wrote:
Tony Berth [2]tonybe...@googlemail.com writes:
Tony Berth [3]tonybe...@googlemail.com writes:
when I tried to flash my FR with the latest SHR and after the kernel
was successfully installed, I got (somewhere
Hi,
I get similar boot speed improvements on my FR with both qtmoko v16 in
NAND and Hackable1 rev5 on SD. The kernel also fixes an issue with both
distro's where BT would fail to wake after suspend.
Well done!
-Dave
On Sat, Jan 9, 2010 at 8:49 AM, jeremy jozwik jerjoz.for...@gmail.comwrote:
Warren,
I've been using my FR for 1.5 years, as my primary phone for a lot of that
time(on QtEI and the more recently shr-u), and I must admit I'm getting more
and more frustrated with it - between the regular crashes and hangs, the
incredibly slow performance (so slow that I still
Timo,
I'd really hope for FreeRunner with 3G and Glamo ripped off, possibly
newer CPU some day. For example some company joining gta02-core
effort to semi-productize something new...
Yeah definitely.
There are a number of efforts going on to regroup, here's my perspective
on the lower layers
Hello, Esteban,
Maybe it will be interesting for you to check this project [1][2]. Don't
forget to read comments in the makefiles.
[1] http://github.com/Sektor/phoneme-qtopia
[2] http://www.youtube.com/watch?v=i3uoK0OGVow
Cheers,
Anton
--
View this message in context:
2010/1/9 Warren Baird wjba...@alumni.uwaterloo.ca:
having a free distribution running with all features enabled. But it's
Depends a bit on how you define 'free'... I interact with a phone mostly
as a user, and possibly as a app developer - so for me if I can run free
software on it, and I
60 matches
Mail list logo