diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-18 13:56:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-18 17:08:05 +0000 |
commit | 480bf037ae437689e16cbdcef0208c4298268fc4 (patch) | |
tree | 6fadc3a4dc65e592e15699e12cd48efc1635d831 /meta/classes/deploy.bbclass | |
parent | 7935ae2e805d935f0f7f38e06e5ef94482540041 (diff) | |
download | poky-480bf037ae437689e16cbdcef0208c4298268fc4.tar.gz |
sstate: Get rid of crazy name mapping
When originally developed, it was thought a task may have more than one associated
sstate archive. The way the code has grown that idea is now not possible or needed.
We can therefore assume one sstate archive per task and drop the crazy name
mapping code. Simpler is better in this case.
The downside is that various sstate archives will change name so this forces a cache
rebuild. Given the other sstate changes going in at this time, this isn't really
a bad thing as things would rebuild anyway.
(From OE-Core rev: 5afe86a6854b21692fd97c5fc7fab50dbc068acb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/deploy.bbclass')
-rw-r--r-- | meta/classes/deploy.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/deploy.bbclass b/meta/classes/deploy.bbclass index c3371421d8..78f5e4a7ba 100644 --- a/meta/classes/deploy.bbclass +++ b/meta/classes/deploy.bbclass | |||
@@ -1,6 +1,5 @@ | |||
1 | DEPLOYDIR = "${WORKDIR}/deploy-${PN}" | 1 | DEPLOYDIR = "${WORKDIR}/deploy-${PN}" |
2 | SSTATETASKS += "do_deploy" | 2 | SSTATETASKS += "do_deploy" |
3 | do_deploy[sstate-name] = "deploy" | ||
4 | do_deploy[sstate-inputdirs] = "${DEPLOYDIR}" | 3 | do_deploy[sstate-inputdirs] = "${DEPLOYDIR}" |
5 | do_deploy[sstate-outputdirs] = "${DEPLOY_DIR_IMAGE}" | 4 | do_deploy[sstate-outputdirs] = "${DEPLOY_DIR_IMAGE}" |
6 | 5 | ||