Re: [QtMoko] new images v6

2009-08-26 Thread Alexander Syring
On 2009-08-04 Radek Polak wrote:
 Hi,
[...]
 * wifi should work
 * alarm should work (only first alarm after boot, second probably wont
 ring)

I saw in syslog, that atd takes only the first date as event you could 
problably make an rework with a cron job for every day events. Or tell atd on 
event make a new one.

 * greatly improved boot speed (can be even more sped up if you replace
 bash with dash)
 [...]

 Regards

 Radek


Regards 

Alex

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-26 Thread Patryk Benderz
[cut]
 I saw in syslog, that atd takes only the first date as event you could 
 problably make an rework with a cron job for every day events. Or tell atd on 
 event make a new one.
...or install normal cron and use it. AFAIK it can be obtained on opkg
for instance...
[cut]

-- 
Kind Regards

Patryk Benderz
IT Specialist
Linux Registered User #377521
+48 22 538 6292

ERSTE Securities Polska S.A.
ul. Królewska 16
Warszawa 00-103
KRS 065121
NIP 526-10-27-638
REGON 011136053
Kapitał akcyjny: 15.500.000 złotych (w pełni opłacony)

This message and any attached files are confidential and intended solely
for the addressee(s). Any publication, transmission or other use of the
information by a person or entity other than the intended addressee is
prohibited. If you receive this in error please contact the sender and
delete the material. The sender does not accept liability for any errors
or omissions as a result of the transmission.


Email secured by Check Point

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-21 Thread Bart .
Dnia 21 sierpnia 2009 7:33 Radek Polak pson...@seznam.cz napisał(a):
  Do You know why bluetooth couldn't be enabled by btsettings ?
  I mean checkbox m_powerCheckBox is checked but Options are disabled.
 
 This is bug in version v6. Thanks for finding it out. I tried to speedup
 phone start by delaying init.d services after GUI is started, but it
 seems to affect bluetooth.
 
 It will be fixed in next image. In meanwhile you can
 edit /etc/init.d/qpe and comment out or delete the last line with sleep
 60. It should work fine then.
 

Yes it works now :)
Thanks!
Bartek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-20 Thread Avid

I've just spent a few hours trying to cross-build from the git sources on my
686 Debian box with a view to making a .deb file so I can add qtmoko to an
existing Debian installation.  After several hours of working it fails with:

 /home/jschultz/openmoko/qtmoko/qtmoko/src/applications/datebook/accounteditor.cpp:59:
 error: uninitialized member ‘AccountWidgetItem::mSource’ with ‘const’ type
 ‘const QPimSource’

Does this mean anything to anyone?
-- 
View this message in context: 
http://n2.nabble.com/-QtMoko--new-images-v6-tp3385796p3477246.html
Sent from the Openmoko Community mailing list archive at Nabble.com.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-20 Thread Radek Polak
Avid wrote:

 I've just spent a few hours trying to cross-build from the git sources on my
 686 Debian box with a view to making a .deb file so I can add qtmoko to an
 existing Debian installation.  After several hours of working it fails with:
 
  /home/jschultz/openmoko/qtmoko/qtmoko/src/applications/datebook/accounteditor.cpp:59:
  error: uninitialized member ‘AccountWidgetItem::mSource’ with ‘const’ type
  ‘const QPimSource’
 
 Does this mean anything to anyone?

No ;-) Can you describe how you build it? Maybe your compiler is more
checks more strictly then mine [1].

Radek

[1] http://qtextended.org/downloads/toolchains/arm920t-eabi.tgz


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-20 Thread Radek Polak
Avid wrote:

 Does this mean anything to anyone?

And maybe try the attached patch.
diff --git a/src/applications/datebook/accounteditor.cpp b/src/applications/datebook/accounteditor.cpp
index a881248..0dd61f9 100644
--- a/src/applications/datebook/accounteditor.cpp
+++ b/src/applications/datebook/accounteditor.cpp
@@ -58,7 +58,7 @@ public:
 
 AccountWidgetItem(QPimContext *context, QListWidget *parent = 0)
 : QListWidgetItem(context-icon(), context-title(), parent)
-, mContext(context) {}
+, mSource(), mContext(context) {}
 
 ~AccountWidgetItem() {}
 
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-20 Thread Bartłomiej Zimoń
Hi Radek!

Please consider this patch:
http://starowa.one.pl/~uzi/neofr/qpe.sh-bt_poweron.patch

Do You know why bluetooth couldn't be enabled by btsettings ?
I mean checkbox m_powerCheckBox is checked but Options are disabled.

Best regards
Bartłomiej Zimoń

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-20 Thread Avid

 And maybe try the attached patch.

Thanks that seems to have helped.

FYI I was using revision 4.4.1-1 of the g++-4.4-arm-linux-gnueabi compiler.

Cheers,
Jonathan

-- 
View this message in context: 
http://n2.nabble.com/QtMoko-new-images-v6-tp3385796p3484667.html
Sent from the Openmoko Community mailing list archive at Nabble.com.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-20 Thread Radek Polak
Bartłomiej Zimoń wrote:

 Hi Radek!
 
 Please consider this patch:
 http://starowa.one.pl/~uzi/neofr/qpe.sh-bt_poweron.patch

Hi Bartłomiej,
commited it, thanks.

 Do You know why bluetooth couldn't be enabled by btsettings ?
 I mean checkbox m_powerCheckBox is checked but Options are disabled.

This is bug in version v6. Thanks for finding it out. I tried to speedup
phone start by delaying init.d services after GUI is started, but it
seems to affect bluetooth.

It will be fixed in next image. In meanwhile you can
edit /etc/init.d/qpe and comment out or delete the last line with sleep
60. It should work fine then.

Regards

Radek


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-18 Thread Glen Ogilvie
Hi,

Just a wondering if anyone has figured out how to get tangoGPS on qtMoko to use 
the same GTK style as is used in shr and other versions, where the text is 
actually a readable size.

Regards
Glen Ogilvie


signature.asc
Description: This is a digitally signed message part.
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-18 Thread Radek Polak
Glen Ogilvie wrote:

 Just a wondering if anyone has figured out how to get tangoGPS on qtMoko to 
 use 
 the same GTK style as is used in shr and other versions, where the text is 
 actually a readable size.

I got the same idea today too :) The SHR theme is really nice. In the
meantime if you need bigger font then unpack attached file
to /opt/qtmoko/bin on your phone.

Regards

Radek


qx.tar.gz
Description: application/compressed-tar
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-10 Thread Bartłomiej Zimoń
Dnia 4 sierpnia 2009 18:54 Radek Polak pson...@seznam.cz napisał(a):

 Hi,
 i have just uploaded new QtMoko debian images. You can download as
 usually from
 
 http://activationrecord.net/radekp/qtmoko/download/
 
 MD5 sums:
 
 55cae339a3bbd714cc98f8d057b82014  qtmoko-debian-v6.jffs2
 d49dcd64f34e0675874a4bd4f73af79c  qtmoko-debian-v6.tar.gz
 f64f5ff2e7dad0202e7cb69d263d006d  uImage-v6.bin
 
 Changes from previous version:
 
 * wifi should work
 * alarm should work (only first alarm after boot, second probably wont
 ring)
 * greatly improved boot speed (can be even more sped up if you replace
 bash with dash)
 * fixed blinking cursor after app in QX ended up
 * SSH and other services are starting after Qtopia is up (so you have to
 wait some time before you can ssh to neo)
 
 I hope that no regression crept in and i'd recommend this version.
 
 There are still problems with long SMS and contacts import. It will take
 some time because my holidays end up today and i will be probably busy
 for some time.
 
 Anyway, enjoy images
 

thanks!

some points:
- what about bluetooth?
- what about fso based images? - more fast than debian based.
- any TODO or something, maybe could find some free time for QtMoko so where to 
feedback?

Best regards
Bartlomiej Zimon

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-10 Thread Radek Polak
Bartłomiej Zimoń wrote:

 some points:
 - what about bluetooth?

Long term solution was to switch to bluez4. I havent started and i dont
plan any time soon.

 - what about fso based images? - more fast than debian based.

Someone has to do them. Last one's were from HouYu Li like month ago. I
dont think they are faster than debian images now. I prefer debian, but
any FSO specific patches are welcome. I'd love to see OpenWrt based
image too, but that's too much work for one man.

 - any TODO or something, maybe could find some free time for QtMoko so where 
 to feedback?

http://qtmoko.org/wiki/Ideas

But you are free to work on anything you need. I am trying to build
Arora web browser, move to newer kernel, fixing the long SMS/suspend bug
and some other small fixes.

Regards

Radek


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6 - problems over problems.

2009-08-06 Thread Radek Polak
Tschaka wrote:

 Hello,
 
 QTMoko doesnt seem to make it for me. although it feels like a phone, it is
 totally unreliable. it's totally freezing occassionally, which led me twice
 to a broken file system, which the fsck at startup didnt fix (it wanted to
 reboot after fsck, but then i got a nice kernel panic). 

You can try put it in NAND instead of SD card. I think Freerunner/kernel
do not work well with some kind of SD cards. E.g. i have bought Kingston
8GB SD card. QtMoko booted only like in 50% cases resulting mostly in
some mmc related kernel messages scrolling on the screen. So i changed
this card with friend's SanDisk 4GB and this one works just fine.

But NAND is probably best place to have stable phone. I never had
problems when running from NAND.

Regards

Radek


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6 - problems over problems.

2009-08-06 Thread Fabian Schölzel
Am Donnerstag 06. August 2009 08:02:25 schrieb Radek Polak:

 You can try put it in NAND instead of SD card. I think Freerunner/kernel
 do not work well with some kind of SD cards. E.g. i have bought Kingston
 8GB SD card. QtMoko booted only like in 50% cases resulting mostly in
 some mmc related kernel messages scrolling on the screen. So i changed
 this card with friend's SanDisk 4GB and this one works just fine.


Hey, good to know. I have a 8GB Kingston SD card, too, and i have very similar 
problems. But i never had problems like this before - but since 3-4 weeks this 
is happening.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6 - problems over problems.

2009-08-06 Thread Tschaka



Radek Polak wrote:
 
 Tschaka wrote:
 
 Hello,
 
 QTMoko doesnt seem to make it for me. although it feels like a phone, it
 is
 totally unreliable. it's totally freezing occassionally, which led me
 twice
 to a broken file system, which the fsck at startup didnt fix (it wanted
 to
 reboot after fsck, but then i got a nice kernel panic). 
 
 You can try put it in NAND instead of SD card. I think Freerunner/kernel
 do not work well with some kind of SD cards. E.g. i have bought Kingston
 8GB SD card. QtMoko booted only like in 50% cases resulting mostly in
 some mmc related kernel messages scrolling on the screen. So i changed
 this card with friend's SanDisk 4GB and this one works just fine.
 
 But NAND is probably best place to have stable phone. I never had
 problems when running from NAND.
 
 Regards
 
 Radek
 
 
 ___
 Openmoko community mailing list
 community@lists.openmoko.org
 http://lists.openmoko.org/mailman/listinfo/community
 
 

Right, i could have thought of that on my own... The card i actually
installed QTmoko at has been the card which has been delivered with the
phone (a 512 MB Transcend Card). The one i bought yesterday has been a 2 GB
Transcend card. Both of them made Problems.

Earlier this year i bought a camcorder. With it i bought an 8 GB SDHC Card.
My Camera stopped recording occassionally, but pretended it would record
further. The device hung, didnt react on any key input. Now guess which
brand it had ... Right, Transcend. 
Now i'm having a Kingston 8 GB SDHC card in it, and it works flawlessly...

Guess i'm off to the shop tomorrow, buying sone SanDisk card, as you said it
works for you. Thanks for the hint :)

Greetings
-- 
View this message in context: 
http://n2.nabble.com/-QtMoko--new-images-v6-tp3385796p3400446.html
Sent from the Openmoko Community mailing list archive at Nabble.com.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6 - problems over problems.

2009-08-06 Thread Nicola Mfb
On Thu, Aug 6, 2009 at 12:31 AM, Tschakastuff4tsch...@gmx.net wrote:
[...]
 this mainly happened, when i was setting up the email account via wifi.
[...]
99% of my problems come up from broken wifi kernel driver (in every
kernel, but latest have serious issues).
I do not know the one used in qtmoko v6.

P.s. I have a kingston 8GB card and it faults quite every time I bring
GSM up, I'm using it to develop, while with the shipped 512mb I have
no problems.

Nicola

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-05 Thread Chris Samuel
On Wed, 5 Aug 2009 02:54:31 am Radek Polak wrote:

 i have just uploaded new QtMoko debian images.

Awesome!  Is it possible to dist-upgrade to this new version ?

cheers,
Chris
-- 
 Chris Samuel  :  http://www.csamuel.org/  :  Melbourne, VIC

This email may come with a PGP signature as a file. Do not panic.
For more info see: http://en.wikipedia.org/wiki/OpenPGP


signature.asc
Description: This is a digitally signed message part.
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6

2009-08-05 Thread Radek Polak
Chris Samuel wrote:

 Awesome!  Is it possible to dist-upgrade to this new version ?

I guess no. You could replace /opt with never version but i also moved
startup to runlevel 2 so you would need to remove it from rc.local and
move it to init.d

If i ever get to it, i'll pack qtopia as debian package and then
upgrades will work. But now i do it all manually [1]

Regards

Radek


[1]
http://activationrecord.net/radekp/qtmoko/download/debian_rootfs_howto.txt


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [QtMoko] new images v6 - problems over problems.

2009-08-05 Thread Tschaka



Radek Polak wrote:
 
 Hi,
 i have just uploaded new QtMoko debian images. You can download as
 usually from
 
 http://activationrecord.net/radekp/qtmoko/download/
 
 MD5 sums:
 
 55cae339a3bbd714cc98f8d057b82014  qtmoko-debian-v6.jffs2
 d49dcd64f34e0675874a4bd4f73af79c  qtmoko-debian-v6.tar.gz
 f64f5ff2e7dad0202e7cb69d263d006d  uImage-v6.bin
 
 Changes from previous version:
 
 * wifi should work
 * alarm should work (only first alarm after boot, second probably wont
 ring)
 * greatly improved boot speed (can be even more sped up if you replace
 bash with dash)
 * fixed blinking cursor after app in QX ended up
 * SSH and other services are starting after Qtopia is up (so you have to
 wait some time before you can ssh to neo)
 
 I hope that no regression crept in and i'd recommend this version.
 
 There are still problems with long SMS and contacts import. It will take
 some time because my holidays end up today and i will be probably busy
 for some time.
 
 Anyway, enjoy images
 
 Regards
 
 Radek
 
 
 
 ___
 Openmoko community mailing list
 community@lists.openmoko.org
 http://lists.openmoko.org/mailman/listinfo/community
 
 

Hello,

QTMoko doesnt seem to make it for me. although it feels like a phone, it is
totally unreliable. it's totally freezing occassionally, which led me twice
to a broken file system, which the fsck at startup didnt fix (it wanted to
reboot after fsck, but then i got a nice kernel panic). Luckily i'm still
having SHR on my phone, to run a file system check over the partition of
Qtmoko. This worked flawlessly once, once after i rebooted then, all my
settings were gone. the messages application wouldnt startup anymore, the
clock was shown all the time. i then accidently clicked on Games in the
menu, which led the phone to lock up again. 

Once the file system was that much damaged, that qtmoko left me with a nice
terminal login screen at init2. what to do if you got this in the middle of
nowhere, only coz ur phone locked up?!

this mainly happened, when i was setting up the email account via wifi.
(actually that's been the only advanced task i did with qtmok yet, so this
isn't essentially caused by the email programm. once this happened when i
was doing something else with various programms)
Once this happened, when the emails from imap were being received, and i
thought, ok, cool, now lets try to click New to compose an e-mail. Phone
crashed. Note, that i still could ping the phone.

Once this happened after i eventually received all the imap emails, and
scrolled on the top of the list. The screen started to flicker like hell
(all i saw was a turquoise screen, flickering a bit. there was NOTHING
visible from the menu i've been before). Only reboot through pressing the
power button for 8 seconds worked. (missed to do a video of this, i'll do
when it happens again.)

Things like these happened earlier these days with qtmoko, when i even had
to pull the battery to get the phone up running again. 

Note that i tried QTmoko first when v5 got released, which happened a few
days ago. i never actually got beyond the configuration phase. the phone
just crashed then. i first thought, that this may be caused by full ram (b/c
this freeze up happened in SHR as well 1 or 2 times). today i bought this 2
gb SD card, made a swap partition 270 mb large and installed qtmoko v6 on
the remaining 1,7 GB partition. So full diskspace/RAM/Swap is quite
unlikely. 

Any hints on how to go on, or by what these problems my be caused? As much
as i like qtmoko with its polished email, messages, phonebook and
phonefeeling, that is just not acceptable for me. i'm happy that the FR
isn't my primary phone yet, so i dont have to rely on it too much at the
moment and can play around with such flaws. For now i am back to SHR
though...

Thanks for your help.
i'm off to bed. Good night. 
-- 
View this message in context: 
http://n2.nabble.com/-QtMoko--new-images-v6-tp3385796p3395174.html
Sent from the Openmoko Community mailing list archive at Nabble.com.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


[QtMoko] new images v6

2009-08-04 Thread Radek Polak
Hi,
i have just uploaded new QtMoko debian images. You can download as
usually from

http://activationrecord.net/radekp/qtmoko/download/

MD5 sums:

55cae339a3bbd714cc98f8d057b82014  qtmoko-debian-v6.jffs2
d49dcd64f34e0675874a4bd4f73af79c  qtmoko-debian-v6.tar.gz
f64f5ff2e7dad0202e7cb69d263d006d  uImage-v6.bin

Changes from previous version:

* wifi should work
* alarm should work (only first alarm after boot, second probably wont
ring)
* greatly improved boot speed (can be even more sped up if you replace
bash with dash)
* fixed blinking cursor after app in QX ended up
* SSH and other services are starting after Qtopia is up (so you have to
wait some time before you can ssh to neo)

I hope that no regression crept in and i'd recommend this version.

There are still problems with long SMS and contacts import. It will take
some time because my holidays end up today and i will be probably busy
for some time.

Anyway, enjoy images

Regards

Radek



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community