All of lore.kernel.org
 help / color / mirror / Atom feed
* meta-fsl-arm build failure
@ 2014-03-17  9:30 Richard Purdie
  2014-03-17 23:14 ` Otavio Salvador
  0 siblings, 1 reply; 5+ messages in thread
From: Richard Purdie @ 2014-03-17  9:30 UTC (permalink / raw)
  To: meta-freescale

I've been running tests on the autobuilder for B != S and there are some
issues in the meta-fsl-arm layer:

http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm/builds/91

Specifically:

nightly-fsl-arm/build/meta-fsl-arm/recipes-bsp/mxsldr/mxsldr_git.bb
nightly-fsl-arm/build/meta-fsl-arm/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_3.10.17-1.0.0.bb

both probably need to inherit autotools-brokensep instead of autotools
as an untested guess.

Cheers,

Richard





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

* Re: meta-fsl-arm build failure
  2014-03-17  9:30 Richard Purdie
@ 2014-03-17 23:14 ` Otavio Salvador
  2014-03-17 23:21   ` Richard Purdie
  0 siblings, 1 reply; 5+ messages in thread
From: Otavio Salvador @ 2014-03-17 23:14 UTC (permalink / raw)
  To: Richard Purdie; +Cc: meta-freescale

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

On Mon, Mar 17, 2014 at 6:30 AM, Richard Purdie <
richard.purdie@linuxfoundation.org> wrote:
> I've been running tests on the autobuilder for B != S and there are some
> issues in the meta-fsl-arm layer:
>
>
http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm/builds/91
>
> Specifically:
>
> nightly-fsl-arm/build/meta-fsl-arm/recipes-bsp/mxsldr/mxsldr_git.bb
> nightly-fsl-arm/build/meta-fsl-arm/recipes-graphics/xorg-driver/
xf86-video-imxfb-vivante_3.10.17-1.0.0.bb
>
> both probably need to inherit autotools-brokensep instead of autotools
> as an untested guess.

Your guesses were right; I did both and I should push them tomorrow.

-- 
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750

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

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

* Re: meta-fsl-arm build failure
  2014-03-17 23:14 ` Otavio Salvador
@ 2014-03-17 23:21   ` Richard Purdie
  0 siblings, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2014-03-17 23:21 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale

On Mon, 2014-03-17 at 20:14 -0300, Otavio Salvador wrote:
> On Mon, Mar 17, 2014 at 6:30 AM, Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> > I've been running tests on the autobuilder for B != S and there are
> some
> > issues in the meta-fsl-arm layer:
> >
> >
> http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm/builds/91
> >
> > Specifically:
> >
> > nightly-fsl-arm/build/meta-fsl-arm/recipes-bsp/mxsldr/mxsldr_git.bb
> >
> nightly-fsl-arm/build/meta-fsl-arm/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_3.10.17-1.0.0.bb
> >
> > both probably need to inherit autotools-brokensep instead of
> autotools
> > as an untested guess.
> 
> Your guesses were right; I did both and I should push them tomorrow.

Thanks :)

Cheers,

Richard



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

* meta-fsl-arm build failure
@ 2014-07-11  8:06 Richard Purdie
  2014-07-11 12:06 ` Otavio Salvador
  0 siblings, 1 reply; 5+ messages in thread
From: Richard Purdie @ 2014-07-11  8:06 UTC (permalink / raw)
  To: meta-freescale, Otavio Salvador

amd-gpu-x11-bin/amd-gpu-mx51.inc contains:

# FIXME: All binaries lack GNU_HASH in elf binary but as we don't have
# the source we cannot fix it. Disable the insane check for now.
python populate_packages_prepend() {
    for p in d.getVar('PACKAGES', True).split():
        d.setVar("INSANE_SKIP_%s" % p, "ldflags")
}

and with the recent change that merged to make package QA a separate
task, this no longer works. I'd suggest you change this to:

python {
    for p in d.getVar('PACKAGES', True).split():
        d.setVar("INSANE_SKIP_%s" % p, "ldflags")
}

which should fix the issue. Doing that as a populate_packages prepend
wasn't the nicest of things to be doing in the first place.

Cheers,

Richard



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

* Re: meta-fsl-arm build failure
  2014-07-11  8:06 meta-fsl-arm build failure Richard Purdie
@ 2014-07-11 12:06 ` Otavio Salvador
  0 siblings, 0 replies; 5+ messages in thread
From: Otavio Salvador @ 2014-07-11 12:06 UTC (permalink / raw)
  To: Richard Purdie; +Cc: meta-freescale

On Fri, Jul 11, 2014 at 5:06 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> amd-gpu-x11-bin/amd-gpu-mx51.inc contains:
>
> # FIXME: All binaries lack GNU_HASH in elf binary but as we don't have
> # the source we cannot fix it. Disable the insane check for now.
> python populate_packages_prepend() {
>     for p in d.getVar('PACKAGES', True).split():
>         d.setVar("INSANE_SKIP_%s" % p, "ldflags")
> }
>
> and with the recent change that merged to make package QA a separate
> task, this no longer works. I'd suggest you change this to:
>
> python {
>     for p in d.getVar('PACKAGES', True).split():
>         d.setVar("INSANE_SKIP_%s" % p, "ldflags")
> }
>
> which should fix the issue. Doing that as a populate_packages prepend
> wasn't the nicest of things to be doing in the first place.

Ok; I will change those to anonymous.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

end of thread, other threads:[~2014-07-11 12:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-11  8:06 meta-fsl-arm build failure Richard Purdie
2014-07-11 12:06 ` Otavio Salvador
  -- strict thread matches above, loose matches on Subject: below --
2014-03-17  9:30 Richard Purdie
2014-03-17 23:14 ` Otavio Salvador
2014-03-17 23:21   ` Richard Purdie

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.