diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2017-08-15 14:34:52 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-16 00:03:15 +0100 |
commit | 5e9468b595821d3c74002fd73651d13ad398f7a3 (patch) | |
tree | 667600d1211ebe18eb2c1c764bde872682c4e8de /meta/recipes-core | |
parent | 2898cce3de18c0c52469db05edc575ac5a83a601 (diff) | |
download | poky-5e9468b595821d3c74002fd73651d13ad398f7a3.tar.gz |
signing-keys: delete unused tasks
In particular, do_unpack needs to be deleted as it was causing missing
subpackages. Do_unpack cleans the builddir and if it was run after
do_get_public_keys it cleaned up all keys causing no packages to be
built.
(From OE-Core rev: 8fbe0d60322f1b02c1e9de1c6ab19648db97dbd9)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/signing-keys.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/signing-keys.bb b/meta/recipes-core/meta/signing-keys.bb index aaa01d0c34..ebfb08c433 100644 --- a/meta/recipes-core/meta/signing-keys.bb +++ b/meta/recipes-core/meta/signing-keys.bb | |||
@@ -71,3 +71,11 @@ do_deploy[cleandirs] = "${DEPLOYDIR}" | |||
71 | # clear stamp-extra-info since MACHINE is normally put there by deploy.bbclass | 71 | # clear stamp-extra-info since MACHINE is normally put there by deploy.bbclass |
72 | do_deploy[stamp-extra-info] = "" | 72 | do_deploy[stamp-extra-info] = "" |
73 | addtask deploy after do_get_public_keys | 73 | addtask deploy after do_get_public_keys |
74 | |||
75 | # Delete unnecessary tasks. In particular, "do_unpack" _must_ be deleted because | ||
76 | # it cleans ${B} and will wipe any keys exported by do_get_public_keys. | ||
77 | deltask do_fetch | ||
78 | deltask do_unpack | ||
79 | deltask do_patch | ||
80 | deltask do_configure | ||
81 | deltask do_compile | ||