mirror of
https://git.yoctoproject.org/poky
synced 2026-04-03 20:02:24 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
db7f5c4e94
commit
c87b50ea9d
14
meta/classes/archive-patched-source.bbclass
Normal file
14
meta/classes/archive-patched-source.bbclass
Normal file
@@ -0,0 +1,14 @@
|
||||
# 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
|
||||
# creating diff file(get all environment variables and functions in building and mapping all content in 's' including patches to xxx.diff.gz.
|
||||
# All archived packages will be deployed in ${DEPLOY_DIR}/sources
|
||||
|
||||
inherit archiver
|
||||
|
||||
# Get archiving package with patched sources including patches
|
||||
do_patch[postfuncs] += "do_archive_patched_sources "
|
||||
|
||||
# Get archiving package with logs(temp) and scripts(.bb and .inc files)
|
||||
do_package_write_rpm[prefuncs] += "do_archive_scripts_logs "
|
||||
|
||||
# Get dump date and create diff file
|
||||
do_package_write_rpm[postfuncs] += "do_dumpdata_create_diff_gz "
|
||||
Reference in New Issue
Block a user