diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-23 14:27:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-25 12:42:47 +0000 |
commit | 32472926832ed1344889c992c1919a2a8b778b2c (patch) | |
tree | 56e2f50861fcfaf09c4ce63a3047630377984e9e /meta/classes/native.bbclass | |
parent | c13e458b22ca1b870332540e0edbc1975c342c79 (diff) | |
download | poky-32472926832ed1344889c992c1919a2a8b778b2c.tar.gz |
Split do_packagedata task from do_package
Currently, do_rootfs has a dependency on all the do_package output being present
due to its usage of the pkgdata directories. This means that if you run:
bitbake xxxx-image -c rootfs
you end up having to fetch and unpack all the do_package data which is usually
large and inefficient. It also means rm_work has to leave all the do_package
data lying around so rootfs works.
This patch splits the actual creation of the pkgdata directory off into a separate
task, "packagedata" which happens immediately after do_package. We can then remap
the dependencies so this task is depended upon, not do_package. Sstate can then be
programmed not to require do_package at the appropriate times.
Whilst this patch doesn't do so, it opens the possibility of rm_work wiping
out the do_package output from WORKDIR as long as it also removed the do_package
stamp (both normal and setscene variants) and allowing more space savings
with rm_work which has been regularly requested.
(From OE-Core rev: 6107ee294afde395e39d084c33e8e94013c625a9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r-- | meta/classes/native.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index c08ca19b78..bfc9e4c7db 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass | |||
@@ -151,6 +151,7 @@ python native_virtclass_handler () { | |||
151 | addhandler native_virtclass_handler | 151 | addhandler native_virtclass_handler |
152 | 152 | ||
153 | do_package[noexec] = "1" | 153 | do_package[noexec] = "1" |
154 | do_packagedata[noexec] = "1" | ||
154 | do_package_write_ipk[noexec] = "1" | 155 | do_package_write_ipk[noexec] = "1" |
155 | do_package_write_deb[noexec] = "1" | 156 | do_package_write_deb[noexec] = "1" |
156 | do_package_write_rpm[noexec] = "1" | 157 | do_package_write_rpm[noexec] = "1" |