diff options
| -rw-r--r-- | meta/classes/sstate.bbclass | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 9a76a6b3cc..950be5586d 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
| @@ -32,6 +32,7 @@ SSTATE_MANMACH ?= "${SSTATE_PKGARCH}" | |||
| 32 | 32 | ||
| 33 | SSTATEPREINSTFUNCS ?= "" | 33 | SSTATEPREINSTFUNCS ?= "" |
| 34 | SSTATEPOSTINSTFUNCS ?= "" | 34 | SSTATEPOSTINSTFUNCS ?= "" |
| 35 | EXTRA_STAGING_FIXMES ?= "" | ||
| 35 | 36 | ||
| 36 | # Specify dirs in which the shell function is executed and don't use ${B} | 37 | # Specify dirs in which the shell function is executed and don't use ${B} |
| 37 | # as default dirs to avoid possible race about ${B} with other task. | 38 | # as default dirs to avoid possible race about ${B} with other task. |
| @@ -258,6 +259,11 @@ def sstate_installpkg(ss, d): | |||
| 258 | else: | 259 | else: |
| 259 | sstate_sed_cmd = "sed -i -e 's:FIXMESTAGINGDIRHOST:%s:g'" % (staging_host) | 260 | sstate_sed_cmd = "sed -i -e 's:FIXMESTAGINGDIRHOST:%s:g'" % (staging_host) |
| 260 | 261 | ||
| 262 | extra_staging_fixmes = d.getVar('EXTRA_STAGING_FIXMES', True) or '' | ||
| 263 | for fixmevar in extra_staging_fixmes.split(): | ||
| 264 | fixme_path = d.getVar(fixmevar, True) | ||
| 265 | sstate_sed_cmd += " -e 's:FIXME_%s:%s:g'" % (fixmevar, fixme_path) | ||
| 266 | |||
| 261 | # Add sstateinst to each filename in fixmepath, use xargs to efficiently call sed | 267 | # Add sstateinst to each filename in fixmepath, use xargs to efficiently call sed |
| 262 | sstate_hardcode_cmd = "sed -e 's:^:%s:g' %s | xargs %s" % (sstateinst, fixmefn, sstate_sed_cmd) | 268 | sstate_hardcode_cmd = "sed -e 's:^:%s:g' %s | xargs %s" % (sstateinst, fixmefn, sstate_sed_cmd) |
| 263 | 269 | ||
| @@ -392,6 +398,11 @@ def sstate_hardcode_path(d): | |||
| 392 | sstate_grep_cmd = "grep -l -e '%s'" % (staging_host) | 398 | sstate_grep_cmd = "grep -l -e '%s'" % (staging_host) |
| 393 | sstate_sed_cmd = "sed -i -e 's:%s:FIXMESTAGINGDIRHOST:g'" % (staging_host) | 399 | sstate_sed_cmd = "sed -i -e 's:%s:FIXMESTAGINGDIRHOST:g'" % (staging_host) |
| 394 | 400 | ||
| 401 | extra_staging_fixmes = d.getVar('EXTRA_STAGING_FIXMES', True) or '' | ||
| 402 | for fixmevar in extra_staging_fixmes.split(): | ||
| 403 | fixme_path = d.getVar(fixmevar, True) | ||
| 404 | sstate_sed_cmd += " -e 's:%s:FIXME_%s:g'" % (fixme_path, fixmevar) | ||
| 405 | |||
| 395 | fixmefn = sstate_builddir + "fixmepath" | 406 | fixmefn = sstate_builddir + "fixmepath" |
| 396 | 407 | ||
| 397 | sstate_scan_cmd = d.getVar('SSTATE_SCAN_CMD', True) | 408 | sstate_scan_cmd = d.getVar('SSTATE_SCAN_CMD', True) |
