From: Gary Thomas <gary@mlbassoc.com>
To: meta-freescale@yoctoproject.org
Subject: Re: Recipe validation
Date: Wed, 03 Dec 2014 15:28:16 -0700 [thread overview]
Message-ID: <547F8E80.2020606@mlbassoc.com> (raw)
In-Reply-To: <CABhF65EQfN5HbM_db4YhR7bxgor6Kf3iqABPQs4PgZx=4uTrLA@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 3727 bytes --]
On 2014-12-03 14:40, Riccardo Stronati wrote:
> No way, The imx-* recipes are kernel version related, I suppose...
>
> I tried and I get:
>
> | make -C pxp all
> | make[1]: Entering directory `/yocto-dizzy/build/tmp/work/
> edm_fairy_imx6-poky-linux-gnueabi/imx-lib/1_3.10.17-1.0.0-r0/imx-lib-3.10.17-1.0.0/pxp'
> | arm-poky-linux-gnueabi-gcc -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/yocto-dizzy/build/tmp/sysroots/edm-fairy-imx6 -DIMX6Q
> -I/yocto-dizzy/build/tmp/sysroots/edm-fairy-imx6/usr/src/kernel/include/uapi -I/yocto-dizzy/build/tmp/sysroots/edm-fairy-imx6/usr/src/kernel/include
> -I/yocto-dizzy/build/tmp/sysroots/edm-fairy-imx6/usr/src/kernel/drivers/mxc/security/rng/include
> -I/yocto-dizzy/build/tmp/sysroots/edm-fairy-imx6/usr/src/kernel/drivers/mxc/security/sahara2/include -Wall -fPIC -O2 -pipe -g -feliminate-unused-debug-types -c pxp_lib.c -o pxp_lib.o
> | In file included from pxp_lib.c:26:0:
> | pxp_lib.h:19:30: fatal error: linux/pxp_device.h: No such file or directory
> | #include <linux/pxp_device.h>
This happens if you try to use an older kernel. The imx-lib is now based
on kernel 3.10+
If you really want to continue using older kernels, you can use the attached
.bbappend as the pxp stuff isn't of much use (and won't work with the older
kernel anyway).
>
> 2014-11-30 23:51 GMT+01:00 Riccardo Stronati <r.stronati@gmail.com <mailto:r.stronati@gmail.com>>:
>
> I think the main problem could be the kernel. The edm bsp has a lot of kernel patch and I have to try to port them to the newer kernel version.
>
>
>
>
> 2014-11-30 19:06 GMT+01:00 Marco Cavallini <cavallini.koan@gmail.com <mailto:cavallini.koan@gmail.com>>:
>
> Wouldn't be better to get out the BSP (bootloader and kernel) from the
> meta-fsl-arm-extra provided by Technexion and get a greater benefit
> using a more recent Yocto branch like 'DAISY'?
>
> Just my 2 cents.
> --
> Marco Cavallini | KOAN sas | Bergamo - Italia
> embedded and real-time software engineering
> Phone:+39-035-255.235 <tel:%2B39-035-255.235> - Fax:+39-178-22.39.748 <tel:%2B39-178-22.39.748>
> http://www.KoanSoftware.com
> http://www.KaeilOS.com
>
> 2014-11-30 14:59 GMT+01:00 Riccardo Stronati <r.stronati@gmail.com <mailto:r.stronati@gmail.com>>:
> > Hi everyone,
> >
> > I'd like to build a custom image with qt4 embedded, phonon-gstreamer with
> > opengl and so gpu hardware acceleration.
> >
> > These are my recipe files can somebody validate them?
> >
> > I'm using yocto dora since the technexion bsp for edm1-fairy with imx6 do
> > not support the newer yocto versions.
> >
> > Thanks you.
> >
> >
> >
> >
> >
> > --
> > _______________________________________________
> > meta-freescale mailing list
> >meta-freescale@yoctoproject.org <mailto:meta-freescale@yoctoproject.org>
> >https://lists.yoctoproject.org/listinfo/meta-freescale
> >
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org <mailto:meta-freescale@yoctoproject.org>
> https://lists.yoctoproject.org/listinfo/meta-freescale
>
>
>
>
>
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
[-- Attachment #2: imx-lib_3.10.17-1.0.0.bbappend --]
[-- Type: text/plain, Size: 437 bytes --]
#
# 2014-09-26
# This recipe does not build with kernels older than 3.10.17
# The problem is that the 'pxp' directory is using functionality
# only introduced in newer kernels. None of the rest of the i.MX6
# tools currently need this support, so we can just not build the
# 'pxp' bits. Luckily, the rest of the library builds fine if the
# pxp directory is simply removed.
#
do_compile_prepend() {
rm -fr ${S}/pxp
}
next prev parent reply other threads:[~2014-12-03 22:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-30 13:59 Recipe validation Riccardo Stronati
2014-11-30 18:06 ` Marco Cavallini
2014-11-30 22:51 ` Riccardo Stronati
2014-12-03 21:40 ` Riccardo Stronati
2014-12-03 22:02 ` sysroot -> roottfs? randy
2014-12-03 22:28 ` Gary Thomas [this message]
2014-12-04 8:08 ` Recipe validation Riccardo Stronati
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=547F8E80.2020606@mlbassoc.com \
--to=gary@mlbassoc.com \
--cc=meta-freescale@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.