diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2012-03-26 18:49:36 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-26 23:13:21 +0100 |
commit | dd61d59c47f95a3f9b451f4cc903c5c31621ac0c (patch) | |
tree | 13dbe6a4f35d6ae4aadf5cff7085c51af1b9bd3c /meta/classes | |
parent | 0cc11b390d1fbd322fd1ce5ed5a9cfea5839f58a (diff) | |
download | poky-dd61d59c47f95a3f9b451f4cc903c5c31621ac0c.tar.gz |
archive-configured-source.bbclass: Archive configured source
This bbclass prepares for archiving configured source.
[YOCTO #1977]
(From OE-Core rev: a81c03cf6111106d04f2883b168f5be78900ee5f)
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/archive-configured-source.bbclass | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/classes/archive-configured-source.bbclass b/meta/classes/archive-configured-source.bbclass new file mode 100644 index 0000000000..1a609b36db --- /dev/null +++ b/meta/classes/archive-configured-source.bbclass | |||
@@ -0,0 +1,14 @@ | |||
1 | # This file is for getting archiving packages with configured sources(archive 's' after configure stage),logs(archive 'temp' after package_write_rpm),dump data | ||
2 | # and creating diff file(get all environment variables and functions in building and mapping all content in 's' including patches to xxx.diff.gz. | ||
3 | # All archived packages will be deployed in ${DEPLOY_DIR}/sources | ||
4 | |||
5 | inherit archiver | ||
6 | |||
7 | # Get archiving package with configured sources including patches | ||
8 | do_configure[postfuncs] += "do_archive_configured_sources " | ||
9 | |||
10 | # Get archiving package with temp(logs) and scripts(.bb and inc files) | ||
11 | do_package_write_rpm[prefuncs] += "do_archive_scripts_logs " | ||
12 | |||
13 | # Get dump date and create diff file | ||
14 | do_package_write_rpm[postfuncs] += "do_dumpdata_create_diff_gz " | ||