All of lore.kernel.org
 help / color / mirror / Atom feed
* [3rdparty][PATCH v2] u-boot-boundary-fw-utils: Build cross recipe
@ 2018-10-22 22:06 Khem Raj
  2018-10-23  8:22 ` Gary Bisson
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2018-10-22 22:06 UTC (permalink / raw)
  To: meta-freescale; +Cc: Khem Raj

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb b/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
index 0a7697a..804a504 100644
--- a/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
+++ b/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
@@ -44,4 +44,5 @@ RPROVIDES_${PN} += "u-boot-fw-utils"
 BBCLASSEXTEND = "cross"
 
 COMPATIBLE_MACHINE = "(imx)"
-COMPATIBLE_MACHINE_class-cross = "(.*)"
+COMPATIBLE_MACHINE_class-cross_arm = "(.*)"
+COMPATIBLE_MACHINE_class-cross_aarch64 = "(.*)"
-- 
2.19.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [3rdparty][PATCH v2] u-boot-boundary-fw-utils: Build cross recipe
  2018-10-22 22:06 [3rdparty][PATCH v2] u-boot-boundary-fw-utils: Build cross recipe Khem Raj
@ 2018-10-23  8:22 ` Gary Bisson
  2018-10-23  9:42   ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Gary Bisson @ 2018-10-23  8:22 UTC (permalink / raw)
  To: Khem Raj; +Cc: meta-freescale Mailing List

Hi,

On Tue, Oct 23, 2018 at 12:07 AM Khem Raj <raj.khem@gmail.com> wrote:
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb b/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
> index 0a7697a..804a504 100644
> --- a/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
> +++ b/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
> @@ -44,4 +44,5 @@ RPROVIDES_${PN} += "u-boot-fw-utils"
>  BBCLASSEXTEND = "cross"
>
>  COMPATIBLE_MACHINE = "(imx)"
> -COMPATIBLE_MACHINE_class-cross = "(.*)"
> +COMPATIBLE_MACHINE_class-cross_arm = "(.*)"
> +COMPATIBLE_MACHINE_class-cross_aarch64 = "(.*)"

Sorry for the dumb question but why is class-cross needed in the first
place? Isn't MACHINE = (imx) sufficient to only target imx platforms
which can only be arm/arm64.

Regards,
Gary


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [3rdparty][PATCH v2] u-boot-boundary-fw-utils: Build cross recipe
  2018-10-23  8:22 ` Gary Bisson
@ 2018-10-23  9:42   ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2018-10-23  9:42 UTC (permalink / raw)
  To: Gary Bisson; +Cc: meta-freescale Mailing List

[-- Attachment #1: Type: text/plain, Size: 1440 bytes --]

On Tue, Oct 23, 2018 at 9:22 AM Gary Bisson <gary.bisson@boundarydevices.com>
wrote:

> Hi,
>
> On Tue, Oct 23, 2018 at 12:07 AM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ---
> >  recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
> b/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
> > index 0a7697a..804a504 100644
> > --- a/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
> > +++ b/recipes-bsp/u-boot/u-boot-boundary-fw-utils_2018.07.bb
> > @@ -44,4 +44,5 @@ RPROVIDES_${PN} += "u-boot-fw-utils"
> >  BBCLASSEXTEND = "cross"
> >
> >  COMPATIBLE_MACHINE = "(imx)"
> > -COMPATIBLE_MACHINE_class-cross = "(.*)"
> > +COMPATIBLE_MACHINE_class-cross_arm = "(.*)"
> > +COMPATIBLE_MACHINE_class-cross_aarch64 = "(.*)"
>
> Sorry for the dumb question but why is class-cross needed in the first
> place? Isn't MACHINE = (imx) sufficient to only target imx platforms
> which can only be arm/arm64.


Honestly I don’t know what the usecase is I am just trying to avoid the
spill it’s having for non arm machines

Ideally native recipe should have been enough but since I am not using it
someone who has a usecase should chime in and probably just delete the
cross portion

>
>
> Regards,
> Gary
>

[-- Attachment #2: Type: text/html, Size: 2638 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-10-23  9:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-22 22:06 [3rdparty][PATCH v2] u-boot-boundary-fw-utils: Build cross recipe Khem Raj
2018-10-23  8:22 ` Gary Bisson
2018-10-23  9:42   ` Khem Raj

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.