[meta-freescale] meta-fsl-arm build failure

Richard Purdie richard.purdie at linuxfoundation.org
Fri Jul 11 01:06:22 PDT 2014


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



More information about the meta-freescale mailing list