summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-03 08:39:37 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-04 11:35:42 +0000
commit49f7c2cd87adafb2130addedf69d5f67dc1f2a22 (patch)
tree81e705565324842a2c30fbf734103ce1890ec646 /meta/classes/image.bbclass
parent1a992fd41861a30f1359169a83c16e99611a3e50 (diff)
downloadpoky-49f7c2cd87adafb2130addedf69d5f67dc1f2a22.tar.gz
image: Remove the do_package_write_* tasks
Now we're filtering tasks in the rpm indexing code so that tasks can only see the packages they really depend upon, having noexec package_write tasks around is causing problems since the tasks exist but don't have manifests. Removing the tasks entirely solves this problem and streamlines the task execution graph too. (From OE-Core rev: 027445cd88a4e706bdfe83bb4ff2c21e2186982a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r--meta/classes/image.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 23ed53deb4..ce78c43a96 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -627,9 +627,9 @@ deltask do_populate_sysroot
627do_package[noexec] = "1" 627do_package[noexec] = "1"
628deltask do_package_qa 628deltask do_package_qa
629do_packagedata[noexec] = "1" 629do_packagedata[noexec] = "1"
630do_package_write_ipk[noexec] = "1" 630deltask do_package_write_ipk
631do_package_write_deb[noexec] = "1" 631deltask do_package_write_deb
632do_package_write_rpm[noexec] = "1" 632deltask do_package_write_rpm
633 633
634# Prepare the root links to point to the /usr counterparts. 634# Prepare the root links to point to the /usr counterparts.
635create_merged_usr_symlinks() { 635create_merged_usr_symlinks() {