Re: OS40 feedback

2009-11-16 Thread Daniel Drake
On Sun, 2009-11-15 at 22:48 -0500, Richard A. Smith wrote:
  I tried. It crashed on me when I both upgraded to Q3A16 and to OS40 at
  the same time. USB keyboard worked fine.
  The battery tricked made everything work fine again.
 
 So are either of you able to duplicate the  the loss of keyboard or
 just sometimes?  It appears to be associated with an upgrade?

I just reproduced this by a fresh reflash of os39 on q3a15i. Stuck on
the sugar name screen.
However, without doing anything, the keyboard and mouse started working
after about 20 seconds.

Daniel


___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel


Re: [Sugar-devel] User workflow sharing Journal Entries over USB sticks

2009-11-16 Thread Martin Langhoff
On Fri, Nov 13, 2009 at 9:55 AM, Martin Langhoff
martin.langh...@gmail.com wrote:
 We do have an internal format - the ._metadata.json format outlined
 for the JEBs themselves. Sugar 0.82 writes that out in the internal
 'datastore' storage. We can reuse it here.

Ok - so last Friday Bert Desmet and I explored the relevant code in
Sugar and started drafting out a patch.

This is draft and incomplete - but I think it shows the direction in
which I am looking
http://dev.laptop.org/attachment/ticket/9657/0001-journal.model.copy-write-json-formatted-metadata.patch

In the patch, I also separated the preview off, so for example if you
have a turtleart 'Foo' Journal Entry, then we save

 - Foo.gtar
 - .Foo.metadata
 - .Foo.preview

Reading base64 enc stuff in the middle of JSON hurts my eyes -- but
maybe I should just keep the preview embedded in there to simplify.

However it is we store it, we have to handle these cases:

 - copy from datastore to ext storage -- what the patch above does
 - rename in ext storage (which I think also has other issues -- ie:
renames don't work )
 - delete in ext storage
 - read the metadata [if available] when mounting the USB stick

cheers,


m
-- 
 martin.langh...@gmail.com
 mar...@laptop.org -- School Server Architect
 - ask interesting questions
 - don't get distracted with shiny stuff  - working code first
 - http://wiki.laptop.org/go/User:Martinlanghoff
___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel


Rough timeline for freezing / alphaing?

2009-11-16 Thread Martin Langhoff
Hi Chris, everyone,

amongst all the constraints, pressures and complications -- I am
wondering if there is any rough idea of when we should start to settle
our tree?

I don't want to be proposing changes on the eve of the freeze. So if
it's happening soon, some bugs will just have to settle and wait, or
the narrow patch preferred over the wider better patch.

At the same time, I have a few things I want to see fixed in our
builds but also have other competing pressures (deadlines with
deployments, etc). If we're freezing very soon, I'll get this done
first. If we're freezing a bit later, the reverse.

cheers,



m
-- 
 martin.langh...@gmail.com
 mar...@laptop.org -- School Server Architect
 - ask interesting questions
 - don't get distracted with shiny stuff  - working code first
 - http://wiki.laptop.org/go/User:Martinlanghoff
___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel


XO 1.5 with USB webcam

2009-11-16 Thread Andrés Nacelle
Hi, I'm trying to get a usb webcam to work with the XO1.5, till now failure
is the only thing achieved. Has anyone already tryed this successfully o
know how to do it?

For the record I'm using:
-kernel 2.6.30_xo1.5-20091104.1716.1.olpc.019dbcf on an i686
-Firmware Q3A15
-OS 37
-webcam eurocase EUCC760, lsusb gives: ID 0c45:612a Microdia PC Camera
(SN9C325)

Thanks in advance for any assistance
-- 
Andres Nacelle
___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel


Re: [Sugar-devel] XO 1.5 with USB webcam

2009-11-16 Thread Martin Langhoff
On Mon, Nov 16, 2009 at 4:27 PM, Andrés Nacelle
anace...@plan.ceibal.edu.uy wrote:
 webcam eurocase EUCC760, lsusb gives: ID 0c45:612a Microdia PC Camera 
 (SN9C325)

Is the webcam UVC? Is it known to work under other recent linuxes,
specially recent Fedoras? If so, with which driver?

On the XO, what does dmesg say right after you've plugged it in?

The general state of the usb webcam is kind of horrible. Cameras are
full of strange quirks and misbehaviours that are hard for any driver
to keep in sync with.

The best I can recommend is to look for a UVC-compliant camera... that
is known to work with Linux's UVC driver. There are some UVC cameras
that don't work, mainly due to odd UVC quirks.

In general, I keep a Fedora 9 and a Fedora 11 system around. When I
see something odd like that on an XO, I test it on the vanilla Fedora.
Helps a lot to narrow down quickly on whether it's an OLPC specific
issue or a base OS issue.

hth,


m
-- 
 martin.langh...@gmail.com
 mar...@laptop.org -- School Server Architect
 - ask interesting questions
 - don't get distracted with shiny stuff  - working code first
 - http://wiki.laptop.org/go/User:Martinlanghoff
___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel


Re: [Sugar-devel] XO 1.5 with USB webcam

2009-11-16 Thread Paul Fox
martin wrote:
  On Mon, Nov 16, 2009 at 4:27 PM, Andrés Nacelle
  anace...@plan.ceibal.edu.uy wrote:
   webcam eurocase EUCC760, lsusb gives: ID 0c45:612a Microdia PC Camera 
  (SN9C325)
  
  Is the webcam UVC? Is it known to work under other recent linuxes,
  specially recent Fedoras? If so, with which driver?
  
  On the XO, what does dmesg say right after you've plugged it in?

even if the camera works under linux (and it looks like the gspca
driver may support it), we don't build or include any multimedia
drivers in our builds.

there's a long-standing need here, and we could really use a
volunteer to take this on -- their work would have a huge
multiplier in helping other folks.  the need is expressed in
http://dev.laptop.org/ticket/7326 -- there should be an
add-on rpm consisting of all the modules that someone might want
to support USB devices, but which aren't commonly enough needed 
for us to include in the base distribution.  (i suppose we could
also do it as a separate, full kernel rpm -- perhaps that would
be safer.)

paul

  
  The general state of the usb webcam is kind of horrible. Cameras are
  full of strange quirks and misbehaviours that are hard for any driver
  to keep in sync with.
  
  The best I can recommend is to look for a UVC-compliant camera... that
  is known to work with Linux's UVC driver. There are some UVC cameras
  that don't work, mainly due to odd UVC quirks.
  
  In general, I keep a Fedora 9 and a Fedora 11 system around. When I
  see something odd like that on an XO, I test it on the vanilla Fedora.
  Helps a lot to narrow down quickly on whether it's an OLPC specific
  issue or a base OS issue.
  
  hth,
  
  
  m
  -- 
   martin.langh...@gmail.com
   mar...@laptop.org -- School Server Architect
   - ask interesting questions
   - don't get distracted with shiny stuff  - working code first
   - http://wiki.laptop.org/go/User:Martinlanghoff
  ___
  Devel mailing list
  Devel@lists.laptop.org
  http://lists.laptop.org/listinfo/devel

=-
 paul fox, p...@laptop.org
___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel


GSM/CDMA Modems support

2009-11-16 Thread Martin Abente
Hello everyone,

Is there any chance to include CONFIG_USB_SERIAL_OPTION module in the
kernel for the F11-XO{1,1.5} builds? In our region, GSM/CDMA connections
are very popular so it would be nice to have support for them (for multiple
purposes: end-user usage, support team, etc.).

Thanks,
Martin (tch)
___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel


[Server-devel] problemas con el internet

2009-11-16 Thread Kevin Mauricio Benavides Castro
Hola como estan a todos en estos dia he experientado algunos problemas con
el servidor por alguna razon en particular el server no transmite el
internet atravez del acces point

ya verifique la direccion publica que me dieron, les hago ping y llego hacia
las direcciones

ahora lo que yo quiero saber es donde puedo poner los IP del servidor DNS
preferido y alternativo


por que proble con una maquina con ubuntu y le pongo todas la direcciones
que se me dan y no me da problema con el internet por que no es necesario
usar los IP del preferido y el alternativo

por que actualmente solo se necesita la DIRECCION IP, LA MASCARA y  DEFEAUL
GETAWEY






-- 
Kevin Mauricio Benavides Castro
Fundación Zamora Terán
www.fundacionzt.org
Technical Support-Nicaragua OLPC
www.wiki.laptop.org/go/user/kevin.benavides  - Soporte XO
-
www.fedoraproject.org
Fedora Project Developer
Linux User: #12356
___
Server-devel mailing list
server-de...@lists.laptop.org
http://lists.laptop.org/listinfo/server-devel


Re: GSM/CDMA Modems support

2009-11-16 Thread Richard A. Smith
 Hello everyone,
 
 Is there any chance to include CONFIG_USB_SERIAL_OPTION module in the
 kernel for the F11-XO{1,1.5} builds? In our region, GSM/CDMA connections
 are very popular so it would be nice to have support for them (for multiple
 purposes: end-user usage, support team, etc.).

This has been a popular request lately.

http://dev.laptop.org/ticket/9684


-- 
Richard A. Smith  rich...@laptop.org
One Laptop per Child
___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel


Re: GSM/CDMA Modems support

2009-11-16 Thread Martin Langhoff
On Mon, Nov 16, 2009 at 9:32 PM, Martin Abente
mabe...@paraguayeduca.org wrote:
 Is there any chance to include CONFIG_USB_SERIAL_OPTION module in the
 kernel for the F11-XO{1,1.5} builds? In our region, GSM/CDMA connections
 are very popular so it would be nice to have support for them (for multiple
 purposes: end-user usage, support team, etc.).

Also very important for the XS-on-XO kernel.

For how to get these thins to happen, see Paul Fox's reply to a
similar request about USB webcams yesterday...


m
-- 
 martin.langh...@gmail.com
 mar...@laptop.org -- School Server Architect
 - ask interesting questions
 - don't get distracted with shiny stuff  - working code first
 - http://wiki.laptop.org/go/User:Martinlanghoff
___
Devel mailing list
Devel@lists.laptop.org
http://lists.laptop.org/listinfo/devel