Re: Build mysql driver (qmysql) for qt-extended

2010-03-04 Thread Mickael Labrousse
The full output :
CROSS COMPILE Badness: /usr/include in INCLUDEPATH: /usr/include/mysql
cc1plus: internal compiler error: in add_path, at c-incpath.c:362
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://gcc.gnu.org/bugs.html for instructions.



Mickael Labrousse a écrit :
 Hi folks !

 I work on qt-extended (4.4.3) and I need the mysql driver (qmysql). So 
 I've tried to build qt-extended with -extra-qt-embedded-config 
 -qt-sql-mysql switch but the response is CROSS COMPILE Badness: 
 /usr/include in INCLUDEPATH: /usr/include/mysql

 Mysql dev packages are installed of course.

 It seems arm-linux-gcc is the problem ?

 Does anyone manage to build mysql driver ?


 Regards,
 Mickael

 ___
 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


Build mysql driver (qmysql) for qt-extended

2010-03-03 Thread Mickael Labrousse
Hi folks !

I work on qt-extended (4.4.3) and I need the mysql driver (qmysql). So 
I've tried to build qt-extended with -extra-qt-embedded-config 
-qt-sql-mysql switch but the response is CROSS COMPILE Badness: 
/usr/include in INCLUDEPATH: /usr/include/mysql

Mysql dev packages are installed of course.

It seems arm-linux-gcc is the problem ?

Does anyone manage to build mysql driver ?


Regards,
Mickael

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


Re: [wikireader] French image available !

2010-01-20 Thread Mickael Labrousse
Hi,

I don't have a WikiReader but congratulation for your  work and Cocorico !

Mickael

Thomas HOCEDEZ a écrit :
 Hi WikiReaders !

 I'm proud to tell you the french image of the Wikireader is (finally) 
 released !

 It is based on the dump of 20th december 2009.
 It is 1.4Gb weigth (nice baby) and contains 898 000 articles.
 A beginning of picture support (math formulas for now).

 It took 18 hours to parse  20 hours to render. (an automated process is 
 being thought).

 No more blahblah, here's the link :

 ftp://alionet-repository.no-ip.info/Linux/OpenMoko/wikireader/wr_fr_20100120.tar.gz

 Bonne Lecture.

 AstHrO

 ___
 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: QT and dbus - no such signal

2010-01-10 Thread Mickael Labrousse
I'm late but I have both QtExtended 4.4.3 and QtEmbedded 4.5 on shr 
running a program using QtDBus.


Mickael.

Nicola Mfb a écrit :
 On Sun, Jan 10, 2010 at 7:30 PM, Christian Rüb christian.r...@gmx.net wrote:
 [...]
   
 Nevertheless, using only a connection and no struct but Qt datatypes 
 directly as you stated above does the job. But it still makes me wonder why 
 it does not work with a QDBusInterface...
 

 It may be that the qdbusinterface constructor has problem in parsing
 the dbus signature to autocreate the right slot, but it looks strange
 to me too, as the three types should be natively supported by qtdbus
 module, should ask on the qt-interest list.

  Niko

 ___
 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: QT and dbus - no such signal

2010-01-08 Thread Mickael Labrousse
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)));

Be careful you fixChanged(int) method is declared as  slot in your header

Christophe M a écrit :

 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,
 QDBusConnection::systemBus(),this);
 ...
 connect(deviceInterface, SIGNAL(FixStatusChanged(int)), this,
 SIGNAL(fixChanged(int)));

 I want to pass the signal on to use it somewhere else in my
 application...

 now when starting my application I get:

 Object::connect: No such signal
 org::freedesktop::Gypsy::Device::FixStatusChanged(int)

 but  mdbus -s org.freedesktop.Gypsy /org/freedesktop/Gypsy
 lists:
 [SIGNAL]org.freedesktop.Gypsy.Device.FixStatusChanged(
 i:fixstatus )

 Do you have any idea what is going wrong?

 You can find the full code here:

 
 http://git.senfdax.de/?p=qgpslog;a=blob;f=src/gypsy.cpp;h=27014f72b3705c6439e10d9130c8c03f8cd9bfdf;hb=HEAD

 Thanks for any help.

 Cheers,
  Christian



 Hi!
 Quick response, I don't have a lot of time, here is an example of 
 connection to fso in Qt :

 m_db_ressourceManager = new QDBusInterface(org.freesmartphone.ogpsd, 
 /org/freedesktop/Gypsy,, QDBusConnection::systemBus());
 connect 
 (m_db_ressourceManager,SIGNAL(FixStatusChanged(int)),this,SLOT(fixStatusChanged(int)));

 Try :

 new QDBusInterface(org.

 freedesktop.Gypsy, /org/freedesktop/Gypsy/default, ,
 QDBusConnection::systemBus());


 Then connect to the signal.

 Many dbus examples are in the Qalee tree : 
 http://think-free83.homelinux.org/project/qalee/trunk/
 And on the wiki there is some informations : http://www.qalee.org

 -- 
 --

 Openmoko phone gui :

 http://www.qalee.org

 

 ___
 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: QT and dbus - no such signal

2010-01-08 Thread Mickael Labrousse
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

 On Friday, 8. January 2010 13:27:32 Mickael Labrousse wrote:
   
 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)));

 Be careful you fixChanged(int) method is declared as  slot in your header
 

 ___
 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: Quick e-mail poll: Still using your Freerunner?

2009-12-30 Thread Mickael Labrousse


Risto H. Kurppa a écrit :
 Do you use FR as your daily/primary phone?
   
No
 Do you use FR as your primary PDA?
   
No, HTC G1
 What distribution you run most of the time?

   
In my job on FR : an old shr-testing
In my private life : recently switch to Hackable1:rev5 chuck (loving 
gnome :d)
 If you don't use FR as your daily phone/PDA, what phone did you change
 over to, and why?

   
Missing calls, Buzz issue (now fixed), EDGE/3G access, battery life and 
missing integrated hardware keyboard (loving my g1 :d)

 Thank you :)


   
You're welcome :)
 r

   

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


Re: Hackable1 rev5 is out !

2009-12-22 Thread Mickael Labrousse
First, Congrats ;)

I've put Hackable1 on my memoryCard, pushed the button My first 
feeling, what a beautiful startup ! Nice splashscreen and no debug 
messages. Same thing for the lock screen.

The global UI is very clean, but maybe a little slow sometimes.
 
I had a crash switching screen orientation in wireless configuration 
application.

Nice works again.

Mickael


David Wagner a écrit :
 Sorry for the cross-post but we are wery pwoud to announce it:


 Dear Hackable:1 users,

 After rev5rc1, we spent hours and hours debugging this or improving that
 to finally get the rev5 out today. Yep, that's right: hackable:1 rev5
 (Codename: Chuck) is there!


 First of all, you can grab the different flavours (user for the flash
 and developer for the SD) here: http://download.hackable1.org/rev5

 Changelog
 Here are the changes since rev4:

 + End users matters

 * Most of the software stack now runs under the 'hackable1' user,
 for security purposes.
 * SMS proper implementation
 * The contact list bug has been found and fixed!
 * Power management improvements, suspend works, bluetooth and wifi
 are no longer turned on by default.
 * An application called 'h1settings' can be used to configure phone
 features, (enable / disable GSM / Wireless / GPS, power management, ...)
 as well as time and date.
 * We created a new theme to celebrate this new release!
 * We got a splashscreen! It features a Chuck figure to reflects the
 rev5 codename: Chuck
 * For those who used to love the games on OM2007.2, we put them back !
 * Boot time seems to have been improved a bit


 + Power users / developers matters

 * This rev5 release has entirely been built from the automatic build
 system.
 * A Linux kernel is now packaged in hackable:1, in order not to rely
 on fso-pkg anymore.
   o Debugging has been disabled (boot time improvement)
   o Easier kernel upgrade when using an ext2 partition to store
 the kernel on µSD cards
   o Separation of kernel modules in three sets: essential (comes
 with the kernel), common modules and more modules
   o You can read a bit on
 http://zecrazytux.net/Embedded/Hackable1/Custom_Kernel.html

 * CDBS is now used for some packages.
   o the package h1packtools contains a CDBS rule that may
 suffice for simple programs with the autotools
   o this rule also enables cross-compilation ; it is based on
 previous works on this subject
 * Git repositories can now be used as sources for remote projects.

 Where can I find it? Where can I get it? I didn't understand last time,
 so I ask again : what is the answer to the ultimate question about life,
 the universe, and everything?

 As ever, you can download hackable:1 on http://download.hackable1.org/rev5.

 All the necessary information can be found on http://trac.hackable1.org
 as ever, that is documentation, installation instructions as well as
 known issues.

 It's obvious that the answer to the aforementioned question is Chuck.

 Who should I thank for all that stuff?

 Among the people who worked on this release, the most notorious are
 (alphabetically):

 * Marcus Bauer (mbauer)
 * Jérome Blondon (jbl2024)
 * Sébastien Bocahu (zecrazytux)
 * Pierre Pronchery (khorben)
 * David Wagner (Deubeuliou)


 We'd also like to thank all the testers, among them most notably
 Bearstech employees, and regular contributors/users of hackable:1, who
 kept us going forward.

 What should I expect next?
 Due to a very good number of good reasons, which could all of them be
 summed up by a minute of one of khorben's rants against libgsmd, we'll
 switch to Freesmartphone.Org for rev6.
 We will also switch from xserver-xglamo to xserver-xorg for the sake of
 more responsive graphics.
 On the developer side, we will of course continue to improve the
 packaging system and lower the entry barrier.

 All in all, more reliable GSM  suspend, and almost all the features one
 may need. Stay tuned!



 The hackable:1 team

 ___
 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: GPS application for QTExtended 4.4.3

2009-11-04 Thread Mickael Labrousse
Otherwise take a look at 
http://qtextended.org/modules/mydownloads/viewcat.php?cid=6

Nice work Thierry :)

--
Mickael

Rune Gangstø a écrit :
 Is there a link for downloading QtExtended 4.4.3?

 The links at http://wiki.openmoko.org/wiki/Qt_Extended_4.4.3 is down.
 Could someone supply me with the rootfs and kernel?

 Thanks!

 Rune

 2009/11/4 giacomo `giotti` mariani giacomomari...@yahoo.it 
 mailto:giacomomari...@yahoo.it

 God(?) bless you!

 --
 /_\ The ASCII   Per comunicare in modo riservato:
 \_/ Ribbon Campaign gpg --keyserver
  pool.sks-keyservers.net http://pool.sks-keyservers.net \
  X  Against HTML--recv-keys 20611EAD
 /_\ Email!
 --
 Please avoid sending me Word or PowerPoint attachments.
 See http://www.gnu.org/philosophy/no-word-attachments.html


 ___
 Openmoko community mailing list
 community@lists.openmoko.org mailto: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
   

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


[FSO] DBus services and methods doc

2009-10-23 Thread Mickael Labrousse
Hi,

Does anyone have a link to a fso dbus documentation ?
I can't find the documentation listing methods of dbus services present 
on SHR (so I think FSO framework).

Thanks,
Mickael

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


Re: [FSO] DBus services and methods doc

2009-10-23 Thread Mickael Labrousse
Thanks, but I've already see them.

But for example I don't have any org.freesmartphone.Device when I check 
with mdbus but I have org.freesmartphone.odeviced...



Jose Luis Perez Diez a écrit :
 El Friday, 23 de October de 2009 09:27:33 Mickael Labrousse va escriure:
   
 Does anyone have a link to a fso dbus documentation ?
 

 http://www.freesmartphone.org/index.php/Tutorials
 and 
 http://git.freesmartphone.org/?p=specs.git;a=blob_plain;f=html/index.html;hb=HEAD

 ___
 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: [FSO] DBus services and methods doc

2009-10-23 Thread Mickael Labrousse
Thanks for this !

I understood the dbus concepts but I was just a litte confuse width the 
services / path.

You saved my life :d (at least my day :d)

+

Mickael

Jose Luis Perez Diez a écrit :
 El Friday, 23 de October de 2009 10:25:54 Mickael Labrousse va escriure:
   
 But for example I don't have any org.freesmartphone.Device when I check
 with mdbus but I have org.freesmartphone.odeviced...
 

 I think need to refresh the DBus concepts on  Service, path (object) , and 
 interface.

 org.freesmartphone.odeviced  is a service and it has objects with 
 introspectable interfaces on the fowllowing paths(on my neo):

 /org/freesmartphone/Device/Audio interfaces:
   org.freedesktop.DBus.Introspectable 
   org.freesmartphone.Device.Audio
 /org/freesmartphone/Device/Display ,
 /org/freesmartphone/Device/CPU :
   org.freesmartphone.Resource 
   org.freedesktop.DBus.Introspectable
 /org/freesmartphone/Device/Display/0 ,
 /org/freesmartphone/Device/Display/gta02_bl :
   org.freesmartphone.Device.Display
   org.freedesktop.DBus.Introspectable
 /org/freesmartphone/Device/IdleNotifier/0 :
   org.freesmartphone.Device.IdleNotifier
   org.freedesktop.DBus.Introspectable
 /org/freesmartphone/Device/Info :
   org.freesmartphone.Device.Info
   org.freedesktop.DBus.Introspectable
 /org/freesmartphone/Device/Input :
   org.freedesktop.DBus.Introspectable
   org.freesmartphone.Device.Input
 /org/freesmartphone/Device/LED/neo1973_vibrator
 /org/freesmartphone/Device/LED/gta02_aux_red ,
 /org/freesmartphone/Device/LED/gta02_power_blue ,
 /org/freesmartphone/Device/LED/gta02_power_orange :
   org.freedesktop.DBus.Introspectable
   org.freesmartphone.Device.LED
 /org/freesmartphone/Device/PowerControl/WiFi ,
 /org/freesmartphone/Device/PowerControl/Bluetooth :
   org.freesmartphone.Resource
   org.freedesktop.DBus.Introspectable
   org.freesmartphone.Device.PowerControl
 /org/freesmartphone/Device/PowerControl/UsbHost :
   org.freedesktop.DBus.Introspectable
   org.freesmartphone.Device.PowerControl
 /org/freesmartphone/Device/PowerSupply/battery ,
 /org/freesmartphone/Device/PowerSupply/usb ,
 /org/freesmartphone/Device/PowerSupply/adapter ,
 /org/freesmartphone/Device/PowerSupply/ac :
   org.freedesktop.DBus.Introspectable
   org.freesmartphone.Device.PowerSupply
 /org/freesmartphone/Device/RTC/rtc0 ,
 /org/freesmartphone/Device/RTC/0 :
   org.freedesktop.DBus.Introspectable
   org.freesmartphone.Device.RealtimeClock

 ___
 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: [Wikireader] Any news on Wikireader ?

2009-10-22 Thread Mickael Labrousse
Hi,

Have a look to http://github.com/wikireader/

--
Mickael

-= Apertum =- a écrit :
 Hello,

 The (very interesting, IMHO) Wikireader product has been launched about
 2 weeks ago, but still i don't see any information about hardware and
 software (IE we don't know if there is a Linux kernel in it, or not),
 and/or how it will be hackable by the community.

 It's there any news somewhere on the net, or when you at OpenMoko plan
 to discover these (important) informations?

 Thank you so much for your attention :-)

   

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


Re: Off Topic

2009-10-15 Thread Mickael Labrousse
+1

Risto H. Kurppa a écrit :
 On Thu, Oct 15, 2009 at 6:20 PM, Michael 'Mickey' Lauer
 mic...@vanille-media.de wrote:
   
 But however, it's Openmoko Inc who makes the decisions.
   
 I disagree, it's our choice. These days this mailing list is now bein
 operated by the community for the community. We chose what is on topic
 and what not. As for the case of the wikireader, why not make a poll and
 let all decide whether it's welcome to discuss here or not?
 

 How about first waiting to see the specs  hear how hackable it is etc
 to guesstimate how much community will there be around it and use this
 to guess if it makes sense to start a new list?


 r

 ___
 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: Increasing GPS accuracy with EGNOS

2009-10-07 Thread Mickael Labrousse
I'll try to check it too.

I'll let you know.

Mickael

Al Johnson a écrit :
 On Monday 05 October 2009, Joseph Reeves wrote:
   
 This is probably worth checking to see what is actually happening
   
 when in Europe,

 Someone tell me what command to run on what distro and I'll let you all
  know...
 

 If it was going to be that easy I'd have done it myself ;-) AFAIK there isn't 
 a simple ubx utility that would allow us to send parameters to the GPS and 
 watch for the returning messages, so adding a few lines to ogpsd is probably 
 the easiest approach. For anyone who knows their way around ogpsd and ubx it 
 should be quick and easy ;-) I'm not that person, so if I get round to it it 
 may take a little longer...

   
 2009/10/5 Al Johnson openm...@mazikeen.demon.co.uk:
 
 On Sunday 04 October 2009, Erik Lundin wrote:
   
 Good news, indeed. Does the Neo FreeRunner support EGNOS signals? Both
 the hardware and software?
 
 http://www.u-blox.com/en/download-center.html?task=view.downloadcid=83

 According to this the Antaris 4 is capable of using WAAS, EGNOS and MSAS,
 collectively known as SBAS, and the signal is received through the GPS
 antenna. By default it is enabled, with one search channel, although this
 can be configured through the ubx protocol. The status can also be shown
 in ubx messages. This is probably worth checking to see what is actually
 happening when in Europe, as when it was written EGNOS was in test mode,
 and its use was disabled by default. It is unclear whether this was
 because of a 'test mode' flag in the signal or hardcoding in the
 firmware.

 ___
 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

 


 ___
 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


[SHR-U] Get imei number without sim card

2009-09-29 Thread Mickael Labrousse
Hi folks,

I'ld like to get, with a command line, the IMEI number of my Freerunner 
(running SHR-U). But I don't have a sim card in it, so is it possible to 
talk to gsmd ?

(I know I can find the IMEI number written behind the battery)

Thanks !

Mickael

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


Re: old shr images

2009-09-16 Thread Mickael Labrousse
Thanks Davide, I'll try this one.

Davide Scaini a écrit :
 googling i found [1] (an old guide), and at least  a 2.6.24 kernel
 |wget 
 http://people.openmoko.org/mickey/images/uImage-2.6.24+r10+gitr75999+54524f4531c8b262431b794fea610d81bb351c86-r10-om-gta02.bin|
 about the modules... no idea!
 d


 [1] 
 http://blog.sdonk.org/2009/03/flashing-del-modem-gsm-di-openmoko-ovvero-aggiornare-il-firmware/

 On Tue, Sep 15, 2009 at 7:19 PM, m.labrousse_l...@bcmd.fr 
 mailto:m.labrousse_l...@bcmd.fr wrote:

 I'm looking for a 2.6.24 kernel SHR's uImage.


 On Tue, Sep 15, 2009 at 6:27 AM, Mickael Labrousse
 m.labrousse_l...@bcmd.fr mailto:m.labrousse_l...@bcmd.fr wrote:
  Yes I have checked but images aren't old enough !
 
 
 do you happen to know a build date? i have a bunch of old images
 sitting on my fedora machine.
 
 ___
 Openmoko community mailing list
 community@lists.openmoko.org mailto:community@lists.openmoko.org
 http://lists.openmoko.org/mailman/listinfo/community

 ___
 Openmoko community mailing list
 community@lists.openmoko.org mailto: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
   


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


old shr images

2009-09-15 Thread Mickael Labrousse
Hi folks !

Is there any place where I can find old shr images (like 2.6.24 kernel) 
? I have searched on http://build.shr-project.com and 
http://shr.bearstech.com but I didn't find anything.

Thanks :)

Mickael

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


Re: old shr images

2009-09-15 Thread Mickael Labrousse
Yes I have checked but images aren't old enough !

Thanks
Mickael

Niels Heyvaert a écrit :
 Hi folks !

 Is there any place where I can find old shr images (like 2.6.24 kernel)
 ? I have searched on http://build.shr-project.com and
 http://shr.bearstech.com but I didn't find anything.

 

 Have you checked http://build.shr-project.org/shr-unstable/images/om-gta02/ ?
  
 You should find quite a few older images at that location.
  
 Niels.
 _
 Je hele online leven op één stek met Windows Live
 http://www.microsoft.com/belux/nl/windows/windowslive/default.aspx
 ___
 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: Anti-Whining: Happy Moko Moments

2009-07-17 Thread Mickael Labrousse
When I was in school I've heard of Neo1973 and I used to dream of it
already :d

Next my first love with the FR : when I was hired to work on it and make
specific product (OpenGuide for french people http://www.openguide.fr )

I also have a lot of good times, examples are :
- running debian
- playing movies on a very good screen
- debugging with the debug board
- using my FR as a linux computer with an usb keyboard, WiFi and a
terminal :)
- showing the FR for commercial purpose
 
And also be part of a very nice community :)


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


3 Neo1973 for sale

2009-07-09 Thread Mickael Labrousse
Hi folks,

I have in my office 3 Neo1973 I'ld like to sell.
They're in perfect condition.

They've been dismounted some times.

Pack contain :
- Neo1973
- 512mb uSd Card
- Laser pointer
- USB cable
- Headset
- Pouch and lanyard

I'm in France but can ship anywhere. The price will be discuss.

Have fun,
Mickael
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: 3 Neo1973 for sale

2009-07-09 Thread Mickael Labrousse
Evgeniy =

I have another one but not in perfect condition. In a few weeks maybe I
think I'll propose it to Paul for a good price :)

Marc =

Someone else is interested for all three I let you know if he takes them
or not.

David =

Thanks :) And yes it's a working product for tourism domain. Our first
customer doesn't have receive the product yet because of video
production delay. And we are currently looking for customers.

Mickael

Le jeudi 09 juillet 2009 à 13:23 +0400, Evgeniy Ginzburg a écrit :

 Mickael Labrousse wrote:
  Hi folks,
 
  I have in my office 3 Neo1973 I'ld like to sell.
  They're in perfect condition.
 
  They've been dismounted some times.
 
  Pack contain :
  - Neo1973
  - 512mb uSd Card
  - Laser pointer
  - USB cable
  - Headset
  - Pouch and lanyard
 
  I'm in France but can ship anywhere. The price will be discuss.
 
  Have fun,
  Mickael
 Hello Mickael.
 I don't want to by one but Paul Fertser fercerpav(at)gmail.com is 
 looking for neo1973.
 He wants to improve power consumption issues for all Neo1973 owners.
 Maybe you can donate/offer some cheap price for one of the Neos
 
 Regards, Evgeniy.
 
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: 3 Neo1973 for sale

2009-07-09 Thread Mickael Labrousse
Mark =

I forgot to explain you, they have been dismounted for research, like a
new case and some others topics :d

Paul =

We stay in touch ;)

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


how long freerunner will be produce ?

2009-04-07 Thread Mickael LABROUSSE
Hi everyone,

I work in a french compagny making up a produce based on the freerunner.

Sorry to open a new thread about this but I read everywhere on the 
Internet that Openmoko cancels gta03 and sometimes news talk about gta02 
too !!

So a simple question how long freerunner will be produce ??

Thanks a lot.
Mickael

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


Re: how long freerunner will be produce ?

2009-04-07 Thread Mickael LABROUSSE
Thanks for answering me.

For the moment we have bought to one of your distributors providing us a 
very good price.
It's very difficult for us to estimate how many GTA02 we are going to 
sell because it is part of a full offer.
It can be be 50 or 100 or 500 per year.

The other problem is that for some others reasons we don't think really 
sell so much this year but really start in 2010.
I a little bit worried for our future with the GTA02.

Thanks,
Mickael.

Steve Mosher a écrit :
 Hi.

 Mickael LABROUSSE wrote:
   
 Hi everyone,

 I work in a french compagny making up a produce based on the freerunner.

 Sorry to open a new thread about this but I read everywhere on the 
 Internet that Openmoko cancels gta03 and sometimes news talk about gta02 
 too !!
 
 GTA03 was postponed. There is anew list on openmoko.org that will be 
 dedicated to a community driven definition for this product. The
 whole product process will be opened up.
   
 So a simple question how long freerunner will be produce ??
 
 As sean noted we have a good level of  inventory for the retail demand
 that we currently see. In addition, we have Kits of components that
 can sustain production through 2009. Because we have some major
 potential customers we also monitor parts availability in case volume
 ramps dramatically. Go ahead and contact me at st...@openmoko.com and
 we can talk about your specific requirements, volume, pricing, timing.
   
 Thanks a lot.
 Mickael

 ___
 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

   

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


the best Freerunner cover/skin

2009-02-05 Thread Mickael Labrousse
Hi everyone,

I'm looking for the perfect Freerunner cover/skin but the all my search
results linked me to the invisibleSHIELD of Zagg. It's a great product
but not really the one I need.

So I'ld like to know which one you are using.

Thanks,
Mickael


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


High Resolution freerunner photos

2009-02-03 Thread Mickael Labrousse
Hi,

Where can I found some HiRes photos of the freerunner ?
I've already download the press photos.

Thanks,
Mickael


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


svgalib

2009-01-22 Thread Mickael Labrousse
Hi,

Is there a package of svgalib available for the freerunner ?

Thanks,
Mickael


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