summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorXiaofeng Yan <xiaofeng.yan@windriver.com>2012-03-26 18:27:40 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-04 17:17:54 +0100
commitc87b50ea9d159bba1ab36f14dc2ec602a4352dbe (patch)
tree75eed486577e4e8e6faf318d752632d0600a9579 /meta/classes
parentdb7f5c4e94d527200213d79532174f00dce151ae (diff)
downloadpoky-c87b50ea9d159bba1ab36f14dc2ec602a4352dbe.tar.gz
archive-patched-source.bbclass: Archive patched source
This bbclass inherits archiver.bbclass to archive patched source [YOCTO #1977] (From OE-Core rev: 8f25bf3881ee568bbe03132d2205da5382fa7dd6) 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-patched-source.bbclass14
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/classes/archive-patched-source.bbclass b/meta/classes/archive-patched-source.bbclass
new file mode 100644
index 0000000000..a6d368f2ca
--- /dev/null
+++ b/meta/classes/archive-patched-source.bbclass
@@ -0,0 +1,14 @@
1# This file is for getting archiving packages with patched sources(archive 's' before do_patch stage),logs(archive 'temp' after package_write_rpm),dump data and
2# 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
5inherit archiver
6
7# Get archiving package with patched sources including patches
8do_patch[postfuncs] += "do_archive_patched_sources "
9
10# Get archiving package with logs(temp) and scripts(.bb and .inc files)
11do_package_write_rpm[prefuncs] += "do_archive_scripts_logs "
12
13# Get dump date and create diff file
14do_package_write_rpm[postfuncs] += "do_dumpdata_create_diff_gz "