[yocto] enable fortran in yocto

2016-02-10 Thread Liubchynskyi, Stanislav (Nokia - PL/Wroclaw)
Hi, I want to add fortran support to yocto build. I try different way whitch describe in the ethernet but enyone does't work. I use fido branch and gcc 4.9. Can you describe me step by step how to enable fortran in yocto or where I can find work instruction. Thanks for help. Best regards,

[yocto] QA error while building bitbake package

2016-02-10 Thread Renjith Vijayan
Hi All, I am new to Yocto bitbake concept & while building my package running in to following QA build error. ERROR: QA Issue: test-repo: Files/directories were installed but not shipped in any package: /etc /etc/test /etc/test/yamls /etc/test/yamls/abc1.yaml /etc/test/yamls/abc2.yaml

[yocto] [meta-raspberrypi][PATCH V2] linux-raspberry.inc: add initramfs support

2016-02-10 Thread Stéphane Cerveau
append initramfs creation to install RPi bootloader trailer Signed-off-by: Stéphane Cerveau --- recipes-kernel/linux/linux-raspberrypi.inc | 9 + 1 file changed, 9 insertions(+) diff --git a/recipes-kernel/linux/linux-raspberrypi.inc

[yocto] DTB without USB host

2016-02-10 Thread Marius Liebenberg
Hi does anyone know if there is a standard DTB for BBB that does not have USB host, network interface and HDMI? - Regards / Groete Marius D. Liebenberg +27 82 698 3251 +27 12 743 6064 -- ___ yocto mailing list

[yocto] request BKM on distributed build

2016-02-10 Thread Ding, Yunliang
Hi, Does anyone who has a BKM on distributed build on Yocto? >From the docs, IceCream was supported, anyone who can share some information >on how to enable it would be much appreciated! Thanks a lot in advance! BRs, Ding Yunliang -- ___ yocto

[yocto] [meta-raspberrypi][PATCH] linux-raspberry.inc: add initramfs support

2016-02-10 Thread Stéphane Cerveau
in do_rpiboot_mkimage add rpi bootload trailer for initramfs image. Signed-off-by: Stéphane Cerveau --- recipes-kernel/linux/linux-raspberrypi.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes-kernel/linux/linux-raspberrypi.inc

Re: [yocto] Where should I append Yocto bitbake task to create work folder symlink ?

2016-02-10 Thread Woronicz, Bartosz ( NSN - PL/Wroclaw)
On 09.02.2016 14:56, EXT Burton, Ross wrote: On 9 February 2016 at 13:51, Woronicz, Bartosz ( NSN - PL/Wroclaw) > wrote: Here is the whole bbclass/: / DESCRIPTION = "Creates symlink to the latest version workdir

[yocto] [meta-intel]: Grub file not created after building the image with bitbake -k linux-yocto

2016-02-10 Thread Shubham Kumar
Hi all, I'm new to Yocto build environment . I have been following the documentations to start building my own image with various customizations. So, my below question may seem very basic to you, for which I apologize in advance :). I am working on Intel Galileo Gen2 I cloned the Jethro layer in

[yocto] dtb filename mismatch prevents booting

2016-02-10 Thread Oliver Graute
Hello list, if I try to boot from my yocto generated SD-card image my u-boot can't start the kernel because the imx6ul-14x14-evk.dtb is missing. reading boot.scr ** Unable to read file boot.scr ** reading zImage 5072288 bytes read in 328 ms (14.7 MiB/s) Booting from mmc ... reading

Re: [yocto] Debugging shared libraries

2016-02-10 Thread Mark Hatle
On 2/10/16 1:31 AM, Gary Thomas wrote: > I'm trying to debug some code (mplayer) which uses some shared > libraries from ffmpeg. When I use GDB (via gdbserver), I don't > get all the debug information I need - note that many of the shared > libraries do not have any symbolic debugging info: Is

[yocto] wic: Setting partition id value?

2016-02-10 Thread Usman, Fahad
Hi, Is there a way to create a partition with an arbitrary partition id, using wic tool. We want to create a disk image using wic for Altera Cyclone V. It require the partition id to be set to a particular hex value for the partition it reads the boot loader binary from. The partition id does

Re: [yocto] Yocto/Poky with external linaro toolchain

2016-02-10 Thread Christopher Larson
https://github.com/MentorEmbedded/meta-mentor/blob/master/meta-mel/conf/include/drop-toolchain-from-sdk.inc may be of interest to you. On Wed, Feb 10, 2016 at 9:01 AM Thomas Kaufmann wrote: > Hi > > > > I started porting an existing linux system to the latest yocto

[yocto] Yocto/Poky with external linaro toolchain

2016-02-10 Thread Thomas Kaufmann
Hi I started porting an existing linux system to the latest yocto base. The hardware TI am 335x based. I want to use the external linaro toolchains. Since I use an existing 3.2 linux kernel as well as an older u-boot, I created a own machine and distro configuration. I succeed to build and run

[yocto] Eclipse IDE plugin failure

2016-02-10 Thread Marius
I installed the latest Eclipse (Mars) and attempted to install the plugin. The installation failed and the reported error was that it could not locate the TM Terminal version 3.xxx. The TM terminal is installed but it is version 4.00xxx Should I rather install older versions of the software

Re: [yocto] dtb filename mismatch prevents booting

2016-02-10 Thread Maciej Borzecki
> Dnia 10 luty 2016 o 17:16 Oliver Graute napisał(a): > > > Hello list, > > if I try to boot from my yocto generated SD-card image my u-boot can't > start the kernel because the imx6ul-14x14-evk.dtb is missing. > > > reading boot.scr > ** Unable to read file boot.scr **

Re: [yocto] Inline Python function name define

2016-02-10 Thread Christopher Larson
def foo(d): # Do something FOO = "${@foo(d)}" On Wed, Feb 10, 2016 at 12:02 PM Xi Zhou Zhou wrote: > Hi, > > I want to manipulate a variable with inline python function in a recipe. > The code is something like this. > > python newpv() { > return 999 > } > > PV

Re: [yocto] wic adds wrong mount lines to my fstab

2016-02-10 Thread Oliver Graute
On Wed, Feb 10, 2016 at 11:19 AM, Ed Bartosh wrote: > Hi Oliver, > > On Tue, Feb 09, 2016 at 09:29:16AM +0100, Oliver Graute wrote: >> # It uses SPL and u-boot >> # >> # The disk layout used is: >> # - - - -- - --

[yocto] Inline Python function name define

2016-02-10 Thread Xi Zhou Zhou
Hi, I want to manipulate a variable with inline python function in a recipe. The code is something like this. python newpv() { return 999 } PV = "${@newpv()}" The error is "name 'newpv' is not defined" ERROR: ExpansionError during parsing /home/joelz/poky/build/

Re: [yocto] Debugging shared libraries

2016-02-10 Thread Khem Raj
> On Feb 10, 2016, at 8:35 AM, Mark Hatle wrote: > > On 2/10/16 1:31 AM, Gary Thomas wrote: >> I'm trying to debug some code (mplayer) which uses some shared >> libraries from ffmpeg. When I use GDB (via gdbserver), I don't >> get all the debug information I need -

Re: [yocto] Inline Python function name define

2016-02-10 Thread Xi Zhou Zhou
The code works for me. Thanks, Joel On Wed, Feb 10, 2016 at 2:04 PM, Christopher Larson wrote: > def foo(d): > # Do something > > FOO = "${@foo(d)}" > > On Wed, Feb 10, 2016 at 12:02 PM Xi Zhou Zhou > wrote: > >> Hi, >> >> I want to manipulate

Re: [yocto] Debugging shared libraries

2016-02-10 Thread Gary Thomas
On 2016-02-10 21:08, Khem Raj wrote: On Feb 10, 2016, at 8:35 AM, Mark Hatle wrote: On 2/10/16 1:31 AM, Gary Thomas wrote: I'm trying to debug some code (mplayer) which uses some shared libraries from ffmpeg. When I use GDB (via gdbserver), I don't get all the

Re: [yocto] dtb filename mismatch prevents booting

2016-02-10 Thread Oliver Graute
On 10/02/16, Maciej Borzecki wrote: > > > Dnia 10 luty 2016 o 17:16 Oliver Graute > > napisał(a): > > > > > > Hello list, > > > > if I try to boot from my yocto generated SD-card image my u-boot can't > > start the kernel because the imx6ul-14x14-evk.dtb is missing. > >

Re: [yocto] wic: Setting partition id value?

2016-02-10 Thread Usman, Fahad
On 02/11/2016 07:03 AM, Jon Szymaniak wrote: I ran into this problem as well, but with parted. My hack was to use dd to write the correct type ID into the image's MBR after I finished creating the partitions on the image file. Thanks Jon Szymaniak, I was also thinking about a similar solution,

[yocto] ClouchDB on Yocto

2016-02-10 Thread Stefano Cordibella
Hi list, I am working with CouchDB and I want to integrate it in Yocto. The main issue is that it requires an old version of spidermonkey (1.8.5) and this version generate an illegal instruction on my runtime (an ARM borad based on Freescale imx6). I am trying to patch spidermonkey using

[yocto] Disabling ipv6

2016-02-10 Thread Chris Trobridge
I hit this issue experimenting with disabling ipv6, as Todd did originally, with an odd error about not being able to build the native sdk. It's not a problem for me but is there a recommended way for disabling a libc distro feature like ipv6 without creating a whole new distro? Does libc

Re: [yocto] wic adds wrong mount lines to my fstab

2016-02-10 Thread Ed Bartosh
Hi Oliver, On Tue, Feb 09, 2016 at 09:29:16AM +0100, Oliver Graute wrote: > # It uses SPL and u-boot > # > # The disk layout used is: > # - - - -- - -- > # | | SPL | u-boot | /boot1 | /boot2 | rootfs1 | rootfs2 |data| > # -

Re: [linux-yocto] [PATCH 04/13] base.cfg: disable some HIDs

2016-02-10 Thread Sullivan, California L
On 02/07/2016 03:21 PM, Paul Gortmaker wrote: > [[linux-yocto] [PATCH 04/13] base.cfg: disable some HIDs] On 04/02/2016 (Thu > 16:25) California Sullivan wrote: > >> These options default to !EXPERT. Since we removed EXPERT from base, >> these became enabled, adding functionality and size that we

Re: [yocto] wic: Setting partition id value?

2016-02-10 Thread Jon Szymaniak
On Feb 10, 2016 12:24 PM, "Usman, Fahad" wrote: > > Hi, > Is there a way to create a partition with an arbitrary partition id, using wic tool. We want to create a disk image using wic for Altera Cyclone V. It require the partition id to be set to a particular hex value for