[oe] [PATCH] uninative: Allow a local own-mirror to work with uninative

Andre McCurdy armccurdy at gmail.com
Wed Aug 2 01:09:09 UTC 2017


On Tue, Aug 1, 2017 at 3:31 AM, Richard Purdie
<richard.purdie at linuxfoundation.org> wrote:
> The games we play with path manipulation of DL_DIR in uninative mean standard
> PREMIRRORS don't work and we can't easily put 'chksum' into the url path from
> a url parameter with the current fetcher url handling to make a generic
> remapping. We therefore add to PREMIRRORS when we know the chksum to
> create a premirror mapping which can work.

Wrong list?

> [YOCTO #9888]
> Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
> ---
>  meta/classes/uninative.bbclass | 6 ++++++
>  1 file changed, 6 insertions(+)
>
> diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass
> index 8f34483..a410647 100644
> --- a/meta/classes/uninative.bbclass
> +++ b/meta/classes/uninative.bbclass
> @@ -49,6 +49,12 @@ python uninative_event_fetchloader() {
>              localdata = bb.data.createCopy(d)
>              localdata.setVar('FILESPATH', "")
>              localdata.setVar('DL_DIR', tarballdir)
> +            # Our games with path manipulation of DL_DIR mean standard PREMIRRORS don't work
> +            # and we can't easily put 'chksum' into the url path from a url parameter with
> +            # the current fetcher url handling
> +            ownmirror = d.getVar('SOURCE_MIRROR_URL')
> +            if ownmirror:
> +                localdata.appendVar("PREMIRRORS", " ${UNINATIVE_URL}${UNINATIVE_TARBALL} ${SOURCE_MIRROR_URL}/uninative/%s/${UNINATIVE_TARBALL}" % chksum)
>
>              srcuri = d.expand("${UNINATIVE_URL}${UNINATIVE_TARBALL};sha256sum=%s" % chksum)
>              bb.note("Fetching uninative binary shim from %s" % srcuri)
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel at lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel



More information about the Openembedded-devel mailing list