diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-01 11:14:14 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-01 11:31:38 +0100 |
commit | 3b0309dbb5d52e9d7abf6fd89cc999ac4cc5d2fb (patch) | |
tree | 53f569ca966dcba332bd8588b768800d767249be | |
parent | da29bc17e4dd748f50b054c5e3afaf8d41bf4077 (diff) | |
download | openembedded-core-3b0309dbb5d52e9d7abf6fd89cc999ac4cc5d2fb.tar.gz openembedded-core-3b0309dbb5d52e9d7abf6fd89cc999ac4cc5d2fb.tar.bz2 openembedded-core-3b0309dbb5d52e9d7abf6fd89cc999ac4cc5d2fb.zip |
uninative: Allow a local own-mirror to work with uninative
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.
[YOCTO #9888]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/uninative.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 8f3448336f..a410647328 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) |