Re: QT Improved - sms messages stop being received

2009-05-29 Thread David Ford
Are you certain that is the reason?  Are you sure your SIM card isn't 
full?  20, or 30, is a common number for the number of SMS storage slots 
on a SIM card.


-d

On 05/30/09 01:39, Glen Ogilvie wrote:

Hi,

Anyone know why after receiving around 20 - 30 txt messages, QT Extended
Improved stops receiving txt messages and only receives txt messages when
qtopia is restarted.. It recevies during restart, but after that.

Regards
Glen ogilvie
   



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


Re: Om2009 testing release 4

2009-05-29 Thread Ben Wong
On Mon, May 25, 2009 at 3:25 AM, Mirko Lindner  wrote:
>
> Ben Wong wrote:
>>
>> 2d) There is too much latency between pressing the AUX button during a
>> call and any indication that the system is working on changing the
>> volume.  Ideally, what I'd like the GUI to show me is not what the
>> current volume is, but what it will be once it has finished processing
>> all the button presses.
>
> This is an issue happening in several places in paroli. The interface is
> very honest in the sense that it only shows what actually happened. Of
> course this means that changes are visible a bit later than in other
> interfaces. Should this paradigm be changed?

Yes, I believe so.  As others have said, "honesty" includes not only
the past but what is planned for the future.  I think changing the
gauge immediately (40%, 60%, 80%) but having it be grayed-out would be
a good way to represent that the volume change is queued up for later
action.

>> 2e) When ending a call, pressing END CALL does light up the button,
>> but then it unlights before the call is actually ended making one
>> think it needs to be pressed again.  I suggest changing the text to
>> "ENDING" after the button has been pressed.
>
> The relates to the last point. Paroli could remove the call window as soon
> as the user ends the call and it could also stop all sounds and just don't
> worry whether or not the call is actually ended.
>
> I agree sth has to change here, which way is better
>
> a) showing that the call is ending and keeping the call window until the
> call is actually ended
>
> or
>
> b) closing the window right away and letting the user move on before the
> call is actually finished

Plan A would be acceptable, but B would be better.  The user interface
should waste as little of the user's time as possible.  However, plan
B also sounds like it'd be tricky to do correctly.  What happens if
the user immediately tries to make another call (or use GPRS or SMS)
and the previous call hasn't yet finished?

Thanks for your detailed response, Mirko.  I look forward to testing
your next release.

--Ben

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


QT Improved - sms messages stop being received

2009-05-29 Thread Glen Ogilvie
Hi,

Anyone know why after receiving around 20 - 30 txt messages, QT Extended 
Improved stops receiving txt messages and only receives txt messages when 
qtopia is restarted.. It recevies during restart, but after that.

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: [omgps] important updates

2009-05-29 Thread mqy

text color on center button is gray, when in "keep cursor in view" mode.
it seems the button is inactive, but actually not :)


ivvmm wrote:
> 
> 
> Am I the only who has the 'center' button always inactive so cannot test
> the new centering features?
> 
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
> 
> 

-- 
View this message in context: 
http://n2.nabble.com/-omgps--important-updates--05-29--tp2977563p2997438.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: Help with gstreamer for python needed

2009-05-29 Thread Ben Wong
Does gstreamer lock up when you use it from the command line?

Here's a little shell script that will call gstreamer to play any
media file.  (This probably needn't to be said for something so
trivial, but this code has no copyright).  You can use it like so:

  playbin  foo.ogg  barf.mp3  /usr/local/share/music/Artists/Freezepop/*

--Ben

#!/bin/sh

# Simplistic gstreamer front-end.
# Ben Wong,  May 2009
# Public Domain

# Usage:  playbin [ file ... ]
#
# E.g.,  cd /usr/share/sounds; playbin *

# When the user hits ^C, wait a bit and then continue to next song.
inthandler () {
  trap reallyexit INT
  echo "Skipping song. Hit ^C twice to quit."
  sleep 1 || reallyexit   # GNU sleep fails on SIGINT
  trap inthandler INT
}


# If the user hits ^C while we're already in the INT handler, quit.
reallyexit () {
  echo
  exit 1
}


 Main routine

trap inthandler INT

for f; do

  case "$f" in
/*) # do nothing
;;
*) f="`pwd`/$f"
;;
  esac

  echo gst-launch playbin '"'uri=file://$f'"' >&2
  gst-launch playbin "uri=file://$f"

done

# End of script



On Mon, May 25, 2009 at 10:43 AM, Andreas Hennig
 wrote:
> Hi All!
>
> Does one of you have expirience with gstreamer?
> I use gstreamer for my music player pyRok. Initialy it works fine but after a 
> while it locks up and i don't see a reason.
> There is no error message ot something. The music just stops.
> I compared pyRok with pythm but i cant see any difference regarding gstreamer.
> PyRok  uses pygame as UI. Maybe pygame interfeares with gstreamer somehow...
>
> Maybe somebody have an idea...
>
> rgds
> Andreas
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>

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


Re: [debian] doom accel/touch not working right?

2009-05-29 Thread Paul Fertser
Fox Mulder  writes:
>> No one knows how to fix the bug that the input isn't working right anymore?
>> 
>> When i do a "hexdump /dev/input/event2" or with event3 i got data so the
>> accels seems to work. A short look at the modifications Scott made to
>> the sourcecode shows that he uses these input devices. But ingame the
>> accels has no effect at all.

Have you verified it (doom) uses ABS input events as was mentioned
many times and required by any kernel older than 3 months?

> I use these two commands to change the display resolution and orientation:
> echo qvga-normal > /sys/bus/spi/devices/spi2.0/state
> xrandr -s 240x320 -o 1
>
> Is there anything which i can do so that the touchscreen input also is
> scaled to 320x240 in landscape mode?

Looks like you're using Xglamo. TS input is known to work properly in
QVGA with Xorg driver.

-- 
Be free, use free (http://www.gnu.org/philosophy/free-sw.html) software!
mailto:fercer...@gmail.com

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


Re: booting mSD

2009-05-29 Thread Paul Fertser
Test  writes:
> fs on unknown-bloc". not sure why?

Because you use mmcblk0p2 for root= option while your uSD seems to
have only one partition.

-- 
Be free, use free (http://www.gnu.org/philosophy/free-sw.html) software!
mailto:fercer...@gmail.com

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


New qwo version 0.5

2009-05-29 Thread Charles Clément
Hello,

A new version of qwo, 0.5 has been released. The main difference with
the previous version is color support. User can now specify the colors
to be used as foreground, background and for the lines.

Some gestures that would lead to print ? have been replaced with
appropriate letters if extending the gesture past one region.

You can download the source and binary packages, including for the dependencies,
at: http://savannah.nongnu.org/files/?group=qwo

More information available on the project page:
http://www.nongnu.org/qwo/

I would like to thank Richard Kralovic and Yaroslav Halchenko for their
contributions.

Here's the ChangeLog entry:

* Add Support fot user defined colors for letters, background and grid
* Add redundant letters in unused spot instead of ?
(Thanks to Richard Kralovic)
* Fix bug issuing a 5 when releasing a shift gesture in center region
(Thanks to Richard Kralovic)

* Update libconfig support to latest 1.3.2 version

* Remove gnome-common dependency
* Remove imlib2-config call in configure.ac
* Remove deprecated Encoding key in desktop file
* Remove double header inclusion

-- 
Charles Clément.

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


mokogeocaching...can someone help me please?

2009-05-29 Thread Steffen Winkler
Hi guys,

the program does not run on my freerunner.

I've tried with SHR/unstable and SHR/testing and the newest hackable
version, but everytime I click on "search" I get this error message:

[code]
http://www.geocaching.com/seek/nearest.aspx?origin_lat=55.6307&origin_long=12.6454&dist=3&submit3=Search
getting data
Traceback (most recent call last):
File "./mokogeocaching.py", line 814, in search
result = self.downloader.search(self.inputLat.get_text(), 
self.inputLon.get_text(), self.inputRadius.get_text())
File "./mokogeocaching.py", line 469, in search self.get_search_result()
eventtarget = self.searchHTLM[start-37:start-7]
UnboundLocalError: local variable 'start' referenced before assignment
[/code]

I've tried the program on my desktop pc (ubuntu 9.04) and it worked.

So I looked after the python versions and it seems clear: python on pc:
2.6.4 or 2.5.4.

So I downloaded the 2.5.4 python version from debian//sid and installed
it on my hackable. After installation I thought, it have to
work...but...I failed, the error is the same as with 2.5.2.

Now I don't have any clue what causes the error.

Hope someone could help me.

Oh and before I forget: It works still on my ubuntu pc (I've not tried
to import the data, but I get a message box which says that there are
xxx caches in this area...on the freerunner I'm not getting this message
box because of the error)


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [omgps] important updates

2009-05-29 Thread ivvmm
mqy wrote:
> Although there is a thread about omgps, I think I'd list the important things
> here.
> Those who have installed previous version(s) are recommend to do a update.
> 
> download url:
> http://omgps.googlecode.com/files/omgps_0.1_armv4t-20090527-1.ipk
> 
> Important updates since first release on 2009-05-21:
> ---
> 
> 1. bugfix: "keep cursor in view" does not always behave as expected.
> 2. bugfix: SIGSEGV on stopping track. see
> http://code.google.com/p/omgps/issues/detail?id=2 
> 3. bugfix: Full screen mode, popup message dialogs does not show on above 
> -- deadlock screen.
> 4. defect: speed unit, add mph and km/h. see
> http://code.google.com/p/omgps/issues/detail?id=1
> 5. new feature: sky map to show satellite positions.
> 
> Regards,
> mqy

Am I the only who has the 'center' button always inactive so cannot test
the new centering features?



signature.asc
Description: OpenPGP digital signature
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [OM2009t4] No libgps?

2009-05-29 Thread D. Gassen
Seems that SHR actually does have the package libgps17. Otherwise try  
installing libgs or libgps16.

Dirk

Am 29.05.2009 um 11:16 schrieb Christ van Willegen:

> Hi,
>
> first of all, Om2009 is looking good! It's a whole step forward
> towards a useable daily phone IMHO.
>
> I tried running Navit, bit it complained about a missing libgps.so.16.
> I tried my old trick of linking the so.17 to the so.16, but apparently
> there is no libgps installed by default...
>
> Did I miss any tricks, or do I need to install additional software?
>
> Christ van Willegen
> -- 
> 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community


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


Re: [OM2009t4] No libgps?

2009-05-29 Thread Marcel
Am Freitag, 29. Mai 2009 17:16:04 schrieb Christ van Willegen:
> Hi,
>
> first of all, Om2009 is looking good! It's a whole step forward
> towards a useable daily phone IMHO.
>
> I tried running Navit, bit it complained about a missing libgps.so.16.
> I tried my old trick of linking the so.17 to the so.16, but apparently
> there is no libgps installed by default...
>
> Did I miss any tricks, or do I need to install additional software?
>
> Christ van Willegen

I installed libgps16 today exactly for navit, its in the angstrom 
repository.

--
Marcel

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


Re: Debuzzing

2009-05-29 Thread Dr. H. Nikolaus Schaller
I should add the status of the Buzz-Rework:

* I have received back today all devices that we have received so far  
until approx. beginning of this week. They will now go to testing and  
then shipment.


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


[OM2009t4] No libgps?

2009-05-29 Thread Christ van Willegen
Hi,

first of all, Om2009 is looking good! It's a whole step forward
towards a useable daily phone IMHO.

I tried running Navit, bit it complained about a missing libgps.so.16.
I tried my old trick of linking the so.17 to the so.16, but apparently
there is no libgps installed by default...

Did I miss any tricks, or do I need to install additional software?

Christ van Willegen
-- 
09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0

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


Re: Tangogps or navit with prepackaged Europe map

2009-05-29 Thread Helge Hafting
Laszlo KREKACS wrote:
> Dear List,
> 
> Is anyone aware of any images, with prepacked maps with tangogps or navit?
> Im going to travel in the next days across Europe, and a gps device
> would be handy.
> I have a spare 2G uSD card. So some ready-made uSD image would be
> extremely cool.
> 
> I only need the map and gps, no phone functionality is required.
> 

don't know any such package, but downloading maps for tangogps is easy 
enough:

1. connect the phone to the internet somehow. (wlan or usb)
2. start tangogps
3. zoom in on an area you want maps for, such as somewhere in Europe.
Note that tangogps downloads and stores map tiles as you do this.
4. If you want detail maps for an area and don't want to "move around"
a lot in the detail maps, just click the screen and download a few
extra zoom levels. This is the way to get detail maps for an
entire city, for example.

Note that downloading detail maps for all of europe will simply be
too much. So go for the places you actually will be going.

Navit maps are much more compact, so all of europe is realistic on a 
large SDcard. Whether navit will perform fast enough on a FR is another 
problem.

Helge Hafting

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


booting mSD

2009-05-29 Thread Test
I downloaded these files below link to my mSD and tried to boot from mSD. it 
locked up with message "Kernel panic - not syncing: VFS: Unable to mount root 
fs on unknown-bloc". not sure why?
 
http://downloads.openmoko.org/distro/testing/NeoFreerunner/
 
[21474539.975000] Waiting 5sec before mounting root device...
[21474542.49] pcf50633 0-0073: usb curlim to 1000 mA
[21474544.985000] VFS: Cannot open root device "mmcblk0p2" or unknown-block(0,0)
[21474544.99] Please append a correct "root=" boot option; here are the 
available part   
    itions:
[21474544.995000] 1f00    2048 mtdblock0 (driver?)
[21474545.005000] 1f01 256 mtdblock1 (driver?)
[21474545.01] 1f02 256 mtdblock2 (driver?)
[21474545.015000] 1f03    8192 mtdblock3 (driver?)
[21474545.02] 1f04 640 mtdblock4 (driver?)
[21474545.03] 1f05 256 mtdblock5 (driver?)
[21474545.04] 1f06  252544 mtdblock6 (driver?)
[21474545.05] b300  498176 mmcblk0 driver: mmcblk
[21474545.055000]   b301  498058 mmcblk0p1
[21474545.06] Kernel panic - not syncing: VFS: Unable to mount root fs on 
unknown-bloc   
    k(0,0)


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


Re: [navit] Actions->Town->Streetname: no "ok" button?

2009-05-29 Thread Xavier Cremaschi
Marcel a écrit :
> Hello!
> 
> I'm fiddling around a bit with navit and found that there's no confirm 
> button when searching for a location (?) via the internal gui:
> Menu->Actions->Town->[enter town's name]->[click green tick]->Street name-
>> [enter street name]->
> There's no green tick to click (what a rhyme...) here. Is that a bug? Or 
> am I missing something? *g*
> 
> --
> Marcel

Navit refines the result list when you add letters.
At the end you just have to pick the right item in the (small) list.

If you see nothing in town list after writing 'A' (for example), it 
could mean :
- you use a piece of openstreetmap with tags navit cannot understand
- no city with a name beginning by 'A' in the selected country (lol)

Xavier.


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


Re: Pulster: Price drop 229 eur

2009-05-29 Thread David Garabana Barro
On Friday 29 May 2009 14:16:00 Christoph Pulster wrote:
> Hi,
>
> we are offering Freerunner GTA02 now for 229 eur = c. 290 USD.
> Group sales of 10 units = 209 eur (264 USD).

Hi, Chris

Is it A6 or A7?
If it's A6, Is it buzzfixed?

Thank you!

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


Re: cronjobs

2009-05-29 Thread Alexey Feldgendler
On Fri, 29 May 2009 15:49:27 +0200, Ed Kapitein  wrote:


> i need a script/program that will read a crontab line
> ( * * * * * some_action) and output the date and time the job will run.
>
> Does anyone know of such a tool?
> This way i can un-suspend the FR a few seconds prior to the start of
> that cron job.
>
> I already made a script that sort of works, but it is limmited at best
> and i hate to reinvent the wheel again.

You might want to look at this:
http://search.cpan.org/dist/Schedule-Cron/


-- 
Alexey Feldgendler 
[ICQ: 115226275] http://feldgendler.livejournal.com

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


[navit] Actions->Town->Streetname: no "ok" button?

2009-05-29 Thread Marcel
Hello!

I'm fiddling around a bit with navit and found that there's no confirm 
button when searching for a location (?) via the internal gui:
Menu->Actions->Town->[enter town's name]->[click green tick]->Street name-
>[enter street name]->
There's no green tick to click (what a rhyme...) here. Is that a bug? Or 
am I missing something? *g*

--
Marcel

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


cronjobs

2009-05-29 Thread Ed Kapitein
Hi all,

i need a script/program that will read a crontab line 
( * * * * * some_action) and output the date and time the job will run.

Does anyone know of such a tool?
This way i can un-suspend the FR a few seconds prior to the start of
that cron job.

I already made a script that sort of works, but it is limmited at best
and i hate to reinvent the wheel again.

Kind regards,
@



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


RE: Bluetooth Keyboard for Openmoko

2009-05-29 Thread Staley, Daniel L
I would recommend the iGo bluetooth keyboard.  It folds up, is super 
portable...and works great with the freerunner.
http://www.supermediastore.com/igo-stowaway-ultra-slim-bluetooth-keyboard-for-pda.html
It even has a holder that can hold the freerunner vertically or horizontally 
while you are typing.

I was able to find one on ebay for pretty cheap.

See a clip of me using it to chat in irc here:
http://www.bufferunderflow.com/?entry=6
Kind of a crappy camera job, but you get the picture.

-Dan

From: Max [...@darim.com]
Sent: Thursday, May 28, 2009 10:54 PM
To: List for Openmoko community discussion
Subject: Re: Bluetooth Keyboard for Openmoko

В Чтв, 28/05/2009 в 13:10 +0200, Michal Brzozowski пишет:
> Pulster is now offering a really nice bt keyboard in the OM
> accessories. It's about the size of the FR.

Can't hold myself but to actually mention that the whole point of having
separate keyboard to my mind is to have something significantly bigger
than FR :)

cheers,
Max.




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


Exporting OM2008 contacts to VCard (was Re: OM2009t4: failure to suspend)

2009-05-29 Thread Chris Samuel
On Fri, 29 May 2009 12:59:43 pm Max wrote:

> How to export contacts from om2008.12 to vcard?

If it works the same way as Qt Extended I just set up
an SMTP server and told it to send all contacts by email.

> Is it possible to handle sms messages in the same way?

I doubt it, IIRC they're stored in the Sqlite DB.

> How does it work with non-latin characters?

Not very well I would suspect, I've one contact with a name which was exported 
with quoted printable encoding, but it just got imported as is to the Paroli 
database. :-(

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: Intone (0.30 - beta release) Elementary based mplayer frontend

2009-05-29 Thread Marco Trevisan (Treviño)
c_c wrote:
> Marco Trevisan (Treviño) wrote:
>> Yes... It still plays while the interface hangs; so it's not a file
>> issue. Just a GUI problem there.
>>
>  Hmmm, I guess I'll have to try running the distribution here. CAn you send
> me a link to the version of elementary you're using?
>  I'll try debugging this soon.

I've already posted it. Here you are [1].

[1]
http://n2.nabble.com/Intone-%280.51%29-Elementary-mplayer-frontend---updated-20-May-tp2587826p2976554.html

-- 
Treviño's World - Life and Linux
http://www.3v1n0.net/


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


Re: Solar charger (was Re: News Openmoko Shop Pulster)

2009-05-29 Thread David Reyes Samblas Martinez
samples of V3 and V4, along dynamo hub and other items are coming to
Tuxbrain from Australia[1],
They are more expensive but after the China fiasco, I hope the quality
worth the effort.
More info when they arrive

[1]http://www.pedalpower.com.au/

2009/5/6 Daniel.Li :
> On Tue, 2009-05-05 at 23:33 +0100, George Brooke wrote:
>> On Tuesday 05 May 2009 13:19:53 Robin Paulson wrote:
>> > 2009/5/5 Christian Gagneraud :
>> > > Yeah, why not! :) I never went to the deep jungle, but i like to make
>> > > trips in the wild, with just my bike and my tent, and the solar
>> > > charger is the only solution to keep my GPS up and running for several
>> > > days/weeks.
>> >
>> > or a hand-crank charger
>> >
>> > imo, this is a more reliable way of charging the battery - it'll work
>> > anywhere (in a building, underground, when it's raining), anytime
>> > (night) and is going to produce a bigger current than this size of
>> > solar panel
>> >
>> > does anyone know of any decent crank chargers that will output over usb?
>> Some wind-up torches can charge mobile phones, I've emailed one place to see
>> if they can tell me what power theirs can output but no reply yet.
>
> I think the theory might be the same.
>
> solar board charge internal battery, and then battery charge phone.
> crank output charge internal battery, and then battery charge phone.
>
> The question is how much mAh crank output and how much time it take to
> charge the internal battery. :)
>>
>> solar.george
>> ___
>> Openmoko community mailing list
>> community@lists.openmoko.org
>> http://lists.openmoko.org/mailman/listinfo/community
> --
> Daniel.Li 
> PALFocus (http://palfocus.oicp.net)
>
>
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>



-- 
David Reyes Samblas Martinez
http://www.tuxbrain.com
Open ultraportable & embedded solutions
Openmoko, Openpandora,  Arduino
Hey, watch out!!! There's a linux in your pocket!!!

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


#1024 was: Re: Debuzzing

2009-05-29 Thread arne anka
> what are the odds of including the hw fix for bug #1024 (oscillating

for those wondering like me:

> http://lists.openmoko.org/pipermail/hardware/2009-May/001192.html

seems, finally for the recamping a fix has been found. a new round of  
fix-parties is to be expected, i assume.

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


Re: Re: Tangogps or navit with prepackaged Europe map

2009-05-29 Thread jeffrey . ratcliffe

On May 29, 2009 10:20am, KaZeR  wrote:
I'm using navit almost daily on my GTA02, for real-life navigation (not  
just

test cases). Route computation is a bit slow, but we can also blame the FR
for that. I'm using the M&G maps (OSM coverage in my area is still rather
poor) and i'm rather happy with it.


Which distro are you using? I find the graphics are not updated quickly  
enough on the motorway even without routing. With navit routing, I find it  
unusable at any speed.


Regards

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


Re: Debuzzing

2009-05-29 Thread Ole Langbehn
Hello Nikolaus,

what are the odds of including the hw fix for bug #1024 (oscillating 
recamping) into the procedure once it's official (or even before that)? 
I'm trying to decide if I wait a little bit more with sending in my FR to 
squash both issues at the same time.

Regards,

-- 
Freie Software durch Bücherkauf fördern | http://bookzilla.de/


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: Tangogps or navit with prepackaged Europe map

2009-05-29 Thread Robin Paulson
2009/5/28 Joseph Reeves :
> That's made me think - we (as in the community) could provide packages
> via opkg.org that provided regular updates for various countries /
> regions / zoom levels. Would be very easy to do, just make sure that
> someone has up to date tiles (OSMupdater, for example) and package
> them up to be extracted to /media/card/maps
>
> It's extra work for one person, and extra load on opkg.org, but for us
> lazy people out there, it'd be great. I might even try it out with a
> South England example myself.

not necessarily a significant extra load on opkg. you could create an
opkg package with no map data in it, only control data for opkg to
know what version is installed, and a postinst script (or whatever the
equivalent is in opkg), which downloads the data from cloudmade,
direct from the osm api, or wherever. i think this is similar to how
linux distros package flash, etc. although for different reasons

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


Re: Tangogps or navit with prepackaged Europe map

2009-05-29 Thread KaZeR

Hello list.

You might be interested in reading those pages :

http://wiki.navit-project.org/index.php/OSD contains an example of the OSD
configuration i'm using on the FR.

http://wiki.navit-project.org/index.php/Navit%27s_binary_map_driver
describes briefly navit's binfile maps.

I saw a post where navit doesn't start because of 'no gui'. It means that
navit doesn't find the gui configured in the xml, hence, it's usually one of
the two following : 
- typo in the xml
- missing .so.0 link. 
Could you post a ls -l /usr/lib/navit/gui/ ?

Also, if you want maps, you can use http://maps.navit-project.org/ where you
will find up-to-date worldfiles, or http://maps.navit-project.org/download/
where you can choose an area on an interactive map, and get the
corresponding map.

I'm using navit almost daily on my GTA02, for real-life navigation (not just
test cases). Route computation is a bit slow, but we can also blame the FR
for that. I'm using the M&G maps (OSM coverage in my area is still rather
poor) and i'm rather happy with it.

K-
-- 
View this message in context: 
http://n2.nabble.com/Tangogps-or-navit-with-prepackaged-Europe-map-tp2986919p2992671.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: [SHR-unstable] Yet another issue with messages

2009-05-29 Thread KaZeR

Hello list,


KaZeR wrote:
> 
> Ticket updated with info loglevel.
> I also noticed that i had the ogsmd dbus service (checked with mdbus -s)
> until i actually tried to access it (connecting to gprs via dbus). Then it
> vanished.
> 

Issue has been solved by 'dos'. It seems it was caused by a splitted
message, for which a part was missing because of a full sim card. 

-- 
View this message in context: 
http://n2.nabble.com/-SHR-unstable--Yet-another-issue-with-messages-tp2986220p2992562.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: [android] new cupcake image

2009-05-29 Thread Davide Scaini
It would be great if installable on sd card...
is it possible with this image?
thanks
d

On Thu, May 28, 2009 at 8:15 AM, undrwater  wrote:

>
> I followed the instructions, but didn't get any further.  I was using uboot
> modified to allow kernels greater than 2mb, and I tried qi as well.
> Symptoms are the same.
>
> I wonder if it's possible to pack this up the way Koolu has done?
>
> Curiosities:
> Why are we using parted as opposed to fdisk or other?  I had to install a
> tool that wasn't already available on my system.
>
> It might help me to understand the need for such a partition scheme for
> Android.  Is there any way to access it while the animated splash is in
> effect?
>
> Thanks!
> Russell Dwiggins
>
> Olivier Berger wrote:
> >
> > Russell Hay  writes:
> >
> >>
> >> 2009/5/20 Russell Dwiggins 
> >>
> >>>
> >>> I'm wondering if it has something to do with the partitioning of the SD
> >>> card?  The wiki confused me because it instructs one to fdisk the card
> >>> with
> >>> 2 linux partitions (83), then format one with FAT and one with ext3.  I
> >>> fdisked the fat partition with vfat (0b) and formatted with vfat, could
> >>> that
> >>> be the problem?
> >>>
> >
> >> In case you've not seen it, here's the video and the flashing
> >> instructions..
> >> http://www.newlc.com/en/freerunner-mobile-which-support-android-cupcake
> >
> > The resulting partitioning should look like unless you wouldn't be sure :
> >
> > # sudo parted -s /dev/sdc print
> > Model: Generic STORAGE DEVICE (scsi)
> > Disk /dev/sdc: 2033MB
> > Sector size (logical/physical): 512B/512B
> > Partition Table: msdos
> >
> > Number  Start  End SizeType File system  Flags
> >  1  3584B  128MB   128MB   primary  fat16lba
> >  2  128MB  256MB   128MB   primary  ext3
> >  3  256MB  2033MB  1777MB  primary  fat16lba
> >
> > Hope this helps,
> > --
> > Olivier BERGER
> > (OpenPGP: 1024D/B4C5F37F)
> > http://www.olivierberger.com/weblog/
> >
> > ___
> > Openmoko community mailing list
> > community@lists.openmoko.org
> > http://lists.openmoko.org/mailman/listinfo/community
> >
> >
>
> --
> View this message in context:
> http://n2.nabble.com/-android--new-cupcake-image-tp2945955p2985753.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
>
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community