mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 21:59:42 +01:00
archive-*-source.bbclass: have do_dumpdata_create_diff_gz task run before do_rootfs
do_rootfs[cleandirs] contains ${S} and, if do_rootfs task starts before
the do_dumpdata_create_diff_gz is finished, an error will occur in the
process because the directory will be removed while still needed by the
create_diff_gz() function.
This patch will force the do_dumpdata_create_diff_gz task to run before
do_rootfs when the final image is created.
[YOCTO #4310]
(From OE-Core master rev: cd90be31571178d6822dba5a94a2795209a3576c)
(From OE-Core rev: c283ab637c7e0501a309dbe9abdf14ad70834c9b)
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
28be9becfb
commit
1a7201545b
@@ -14,7 +14,7 @@ addtask do_archive_configured_sources after do_configure
|
||||
addtask do_archive_scripts_logs
|
||||
|
||||
# Get dump date and create diff file
|
||||
addtask do_dumpdata_create_diff_gz
|
||||
addtask do_dumpdata_create_diff_gz before do_rootfs
|
||||
|
||||
python () {
|
||||
pn = d.getVar('PN', True)
|
||||
|
||||
@@ -14,7 +14,7 @@ addtask do_archive_original_sources_patches after do_unpack
|
||||
addtask do_archive_scripts_logs
|
||||
|
||||
# Get dump date and create diff file
|
||||
addtask do_dumpdata_create_diff_gz
|
||||
addtask do_dumpdata_create_diff_gz before do_rootfs
|
||||
|
||||
python () {
|
||||
pn = d.getVar('PN', True)
|
||||
|
||||
@@ -14,7 +14,7 @@ addtask do_archive_patched_sources after do_patch
|
||||
addtask do_archive_scripts_logs
|
||||
|
||||
# Get dump date and create diff file
|
||||
addtask do_dumpdata_create_diff_gz
|
||||
addtask do_dumpdata_create_diff_gz before do_rootfs
|
||||
|
||||
python () {
|
||||
pn = d.getVar('PN', True)
|
||||
|
||||
Reference in New Issue
Block a user