Re: [b2g] marionette script hanging on simple javascript...

2014-02-09 Thread Zac Campbell
Let me check these example on Monday and get back to you (vibration and battery are not APIs we use in our daily test automation because it's hard to validate the input and output). In the meantime if you want some examples of how we use the Python Marionette client with Fx OS APIs you can

[b2g] adding l10n localization at a input type text placeholder?

2014-02-09 Thread josellte...@yahoo.es
any idea about this? Enviado desde Yahoo Mail con Android ___ dev-b2g mailing list dev-b2g@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-b2g

Re: [b2g] Per device Gecko configure options

2014-02-09 Thread Tim Chien
Hi, First, I would like to know if this opinion apply to Gaia or not. There are various build config to modify resulting Gaia packages, and keyboard app already include layouts (which is JavaScript) and dictionary files selectively based on config given. With multiple form factors on the horizon,

[b2g] Problem running config.sh

2014-02-09 Thread Adrián Mª Mora Carreto
Hello, I am trying to build a custom Firefox OS for my device. I have fixed my previous mistake by adding the default tag that I forgot to introduce. After fetching all the projects, the repo sync fails with the message: error: manifest required for this command -- please run init I've

Re: [b2g] how much memory is needed to build B2G

2014-02-09 Thread Techno Buddha
Ok, so I was able to figure out the 2 files. yea for grep ;) but I do have a bit of confusion. and that is with regards to the android.mk file. it says there are 3 removals. But the 3rd one, a - on line 295 actually doesn't exist.

Re: [b2g] how much memory is needed to build B2G

2014-02-09 Thread Techno Buddha
THANK YOU Gabriele!!! I was able to finally build!!! William ___ dev-b2g mailing list dev-b2g@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-b2g

[b2g] -su: ./simg2img: cannot execute binary file

2014-02-09 Thread Techno Buddha
Hello all, I am deeply appreciated with all the help I am getting here! I've finally got a build! but.. seem to have a problem with the binary to convert? I'm trying to do the SG2 dual boot with ICS. I have the kernel all done, etc. but now when I follow the instructions: simg2img userdata.img

Re: [b2g] -su: ./simg2img: cannot execute binary file

2014-02-09 Thread Juan Gómez
Hi Buddha, I think this guide is a little outdated. Anyway, As far as I recall sim2img binary is generated in other path. Just try: find out/ -name simg2img. If you are interested in trying FirefoxOS on SGS2, you will probably want to check this thread in xda-developers:

Re: [b2g] adding l10n localization at a input type text placeholder?

2014-02-09 Thread Axel Hecht
On 2/9/14 2:03 PM, josellte...@yahoo.es wrote: any idea about this? Enviado desde Yahoo Mail con Android Search for localized .placeholder content in gaia, that'll give you examples. Axel ___ dev-b2g mailing list dev-b2g@lists.mozilla.org

Re: [b2g] -su: ./simg2img: cannot execute binary file

2014-02-09 Thread Techno Buddha
Hello Juan, thanks for your insight! I'll look into it when it's time to go to JB! right now, I'm just wanting ICS, to start off with. baby steps! lol! ___ dev-b2g mailing list dev-b2g@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-b2g

[b2g] Memory reports Nuwa

2014-02-09 Thread Fabrice Desré
Now that Nuwa is enabled on master and 1.3, if you try to get a memory report using $B2G/tools/get_about_memory.py you'll notice that the process is stuck mid-way. That's because the nuwa process is frozen and doesn't answer to the request for a memory dump. While we'd still like to know how the

Re: [b2g] marionette script hanging on simple javascript...

2014-02-09 Thread Craig Comstock
logcat shows the following: I/Gecko   ( 2282): 1391974328201    Marionette  DEBUG   accepted connection on 127.0.0.1:36081 I/Gecko   ( 2282): 1391974328417    Marionette  INFO    loaded marionette-listener.js I/Gecko   ( 2282): 1391974328419    Marionette  INFO   

Re: [b2g] How to revive ZTE OPEN?

2014-02-09 Thread Asa Dotzler
On 2/9/14, 1:18 PM, Everton Figueiredo wrote: Went to upgrade ZTE OPEN to version 1.2 via CMD and cell did not start and the screen blinked at logon, when I sent a reboot he did not call more, and the worst that removed the usb cable and it would not turn over, the pc only recognizes as unknown

Re: [b2g] How to revive ZTE OPEN?

2014-02-09 Thread Everton Figueiredo
But that's exactly what I did, I used this tutorial, but I need the computer to identify the firmware ZTE OPEN. It only recognizes the door when I update the driver. ___ dev-b2g mailing list dev-b2g@lists.mozilla.org

[b2g] downgrade Siyah v6.0b5 to v5.0.1 for firefox OS or where is the hidden partition?

2014-02-09 Thread Techno Buddha
Hello all, My end result is to dual boot firefox OS with a custom rom and dual boot using Siyah-s2-v5.0.1 as per these instructions: https://developer.mozilla.org/en-US/Firefox_OS/Dual_boot_of_B2G_and_Android_on_SGS2#Boot_operations the problem I have, is that I have a newer version of Siyah,

[b2g] how b2g links to the system library

2014-02-09 Thread Sam Lin
hello, I have encountered the error which is undefined reference to After investigating the issue, I found that the system library does not link to gecko. Can anyone instruct how b2g links to these library? ___ dev-b2g mailing list

Re: [b2g] downgrade Siyah v6.0b5 to v5.0.1 for firefox OS or where is the hidden partition?

2014-02-09 Thread iacchi86
Hi, I'm the author of that guide. About kernel version: v.5 is the last one able to boot B2G, v.6 can't do it (I asked the author about it and he told me he's not interest in supporting it anymore). About the problem with the hidden partition: that's weird! I've always flashed an image there

Re: [b2g] marionette script hanging on simple javascript...

2014-02-09 Thread Jonathan Griffin
You can only return objects from Marionette that can be JSON-serialized; the battery object cannot (it's a https://developer.mozilla.org/en-US/docs/Web/API/BatteryManager instance). This is why you can return navigator.battery.level, but not navigator.battery. Jonathan - Original Message

Re: [b2g] how b2g links to the system library

2014-02-09 Thread Dave Hylands
Hi Sam, - Original Message - From: Sam Lin ckjboy2...@gmail.com To: dev-b2g@lists.mozilla.org Sent: Sunday, February 9, 2014 6:25:05 PM Subject: [b2g] how b2g links to the system library hello, I have encountered the error which is undefined reference to After

[b2g] proper product/components for bugs

2014-02-09 Thread Vladimir Vukicevic
Hey all, Please make an effort to move bugs to their proper product component, especially if they are something that will have an effect on heavily-impacted teams like Graphics. Bugs should never sit in a General component unless there is no direct work for them (especially no code --