[yocto] problem with yocto behind http_proxy

2014-02-19 Thread Federico Vitali
Hi, I have problems using yocto behind a firewall. The firewall blocks git, so I've followed the instructions given here: http://www.yoctoproject.org/docs/1.5.1/ref-manual/ref-manual.html#how-does-the-yocto-project-obtain-source-code-and-will-it-work-behind-my-firewall-or-proxy-server i.e.

Re: [yocto] problem with yocto behind http_proxy

2014-02-19 Thread Federico Vitali
I've alreay tried, it doesn't accept it ... 2014-02-19 14:51 GMT+01:00 Laurentiu Palcu laurentiu.pa...@intel.com: On Wed, Feb 19, 2014 at 02:24:38PM +0100, Federico Vitali wrote: Thank you Laurentiu. Unfortunately my proxy requires authentication via username and password, but it seems

Re: [yocto] problem with yocto behind http_proxy

2014-02-19 Thread Federico Vitali
Thank you Laurentiu, tomorrow I'll give it a try! Thank you very much ! Federico 2014-02-19 15:23 GMT+01:00 Laurentiu Palcu laurentiu.pa...@intel.com: On Wed, Feb 19, 2014 at 02:57:49PM +0100, Federico Vitali wrote: I've alreay tried, it doesn't accept it ... Apparently, socat has support

Re: [yocto] problem with yocto behind http_proxy

2014-02-20 Thread Federico Vitali
: On Wed, Feb 19, 2014 at 02:57:49PM +0100, Federico Vitali wrote: I've alreay tried, it doesn't accept it ... Apparently, socat has support for authentication. Try this: #!/bin/bash # $1 = hostname, $2 = port PROXY=myproxy.example.com exec socat STDIO SOCKS4:$PROXY:$1:$2,proxyauth

[yocto] Build qemuarm compatible with freescale i.MX6

2014-02-28 Thread Federico Vitali
Goodmorning, I'm new to yocto project, I would like to know if there is the possibility to build a qemuarm kernel compatible with fsl i.MX6. I'm developing with a sabre SD board and I would like to run the same filesystem both on the real target and via qemu emulation on my PC for application

Re: [yocto] Build qemuarm compatible with freescale i.MX6

2014-02-28 Thread Federico Vitali
...@gmail.com: Il 28/02/2014 11:03, Federico Vitali ha scritto: Goodmorning, I'm new to yocto project, I would like to know if there is the possibility to build a qemuarm kernel compatible with fsl i.MX6. I'm developing with a sabre SD board and I would like to run the same filesystem both

Re: [yocto] Build qemuarm compatible with freescale i.MX6

2014-03-03 Thread Federico Vitali
Thank you Marco! What is the best pratice for application developement purposed? Should I use a qemuarm arch or a qemux86 is better for performance reasons debugging on a x86_64 machine? Thank you again 2014-02-28 16:02 GMT+01:00 Marco koansoftw...@gmail.com: Il 28/02/2014 15:54, Federico

[yocto] [meta-raspberrypi] Problem building core-image-sato-sdk

2014-03-09 Thread Federico Vitali
Hi everyone, I've succesfully build core-image-sato for raspberry pi, but when I try to build the sdk version I obtain the following error: ERROR: Multiple .bb files are due to be built which each provide virtual/libgles2 (/home/vitalife/yocto/poky/meta-raspberrypi/recipes-graphics/userland/

[yocto] libtool problem while crosscompiling

2014-03-13 Thread Federico Vitali
Hi, I'm working with a imx6qsabrelite board and a sato SDK filesystem. I've built a complete SDK with bitbake -c populate_sdk and installed it. I have to modify the gstreamer gst-plugins-base libraries. I've sourced the environment, untarred the original gst-plugins-base-0.10.36.tar.gz, applied

[yocto] [meta-fsl] libtool problem while crosscompiling

2014-03-13 Thread Federico Vitali
Sorry, I've fixed the subject of my previous mail prepending the correct keywords. This was the message: Hi, I'm working with a imx6qsabrelite board and a sato SDK filesystem. I've built a complete SDK with bitbake -c populate_sdk and installed it. I have to modify the gstreamer

[yocto] What is the best practice for customizing libraries included in yocto distribution?

2014-03-13 Thread Federico Vitali
Hi everyone, what should I do to customize and crosscompile a library already distributed with yocto? I see 2 possibilities: 1. Build and install a toolchain and sysrootfs on local host and untar the original library, apply yocto distributed patches and then cross compile == I'm having

Re: [yocto] What is the best practice for customizing libraries included in yocto distribution?

2014-03-14 Thread Federico Vitali
Thank you Nicolas. I try to explain better, sorry, yesterday I wrote the email in a hurry. I'm working to build an OS based on sato, but I have to modify the code of some libraries included in the distribution. When I wrote customize I meant modify source code. I answer to your questions: can

Re: [yocto] What is the best practice for customizing libraries included in yocto distribution?

2014-03-14 Thread Federico Vitali
Thank you Nicholas and Gary! I'm quite experienced in linux embedded developement, but I'm new to yocto / openembedded. Nicolas, can you please explain me how to use my sources separate from OE build dir tree and still using oe built system? Do I have to edit the sources directly in

Re: [yocto] What is the best practice for customizing libraries included in yocto distribution?

2014-03-14 Thread Federico Vitali
at 11:09 AM, Federico Vitali fede.vit...@gmail.com wrote: Thank you Nicholas and Gary! I'm quite experienced in linux embedded developement, but I'm new to yocto / openembedded. Nicolas, can you please explain me how to use my sources separate from OE build dir tree and still using oe built

Re: [yocto] What is the best practice for customizing libraries included in yocto distribution?

2014-03-14 Thread Federico Vitali
again! Federico 2014-03-14 11:18 GMT+01:00 Nicolas Dechesne nicolas.deche...@linaro.org: Frederico, On Fri, Mar 14, 2014 at 11:09 AM, Federico Vitali fede.vit...@gmail.com wrote: Thank you Nicholas and Gary! I'm quite experienced in linux embedded developement, but I'm new to yocto

[yocto] [meta-freescale] Problems concerning qte-in-use-image

2014-03-31 Thread Federico Vitali
Hi everyone, I've build qte-in-use image for imx6qsabrelite and I have some problems running qt embedded applications. Some of the problems are: 1. after the boot completes and login I try to launch the demo application: # qtdemoE -qws my screen goes black and nothing happens. The board hangs,

[yocto] Question about remote debugging via gdbserver

2014-04-12 Thread Federico Vitali
Hi everyone, I'm wondering if it is possible to debug an installed library on the target via gdbserver. I try to explain: suppose that I'm developing an application using gstreamel libraries. I set up eclipse / gdb to work with my target on the network. When I reach a gst funciont (e.g.

Re: [yocto] Question about remote debugging via gdbserver

2014-04-18 Thread Federico Vitali
Goodmorning Rudolf, thank you again for your time. I have not explained my goal very well, so I try to explain with a specific example. I'm working with gstreamer for a project I'm following for my company. Let's take the gstreamer hello world application, here is the source code:

[yocto] problems with bitbake -c populate_sdk

2014-04-22 Thread Federico Vitali
Hi everyone, I have the following problem: I've made a very simple custom image: IMAGE_INSTALL += \ ${CORE_IMAGE_BASE_INSTALL} \ packagegroup-my-packages \ LICENSE = MIT inherit core-image Where packagegroup-my-packages is as follows: inherit packagegroup RDEPENDS_${PN} = libxml2 pixman