diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-07-31 10:56:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-03 11:14:13 +0100 |
commit | 7a25294b714a183ff18d1a95a0f8a8208ce51865 (patch) | |
tree | e308ae9a99dd7cc24f07844f291d076f17e20596 /meta/classes/license.bbclass | |
parent | 86abf0c1afd8b93606e0102df8c29902dd3394db (diff) | |
download | poky-7a25294b714a183ff18d1a95a0f8a8208ce51865.tar.gz |
meta: drop do_bootdirectdisk do_vmimg references
do_bootdirectdisk and do_vmimg had been dropped by commit 929ba563:
[ image: Convert vmdk/vdi/qcow2 to strict CONVERSION_CMD types ]
Also drop the references to them and image-vm.
(From OE-Core rev: 609f7f4ecd17c8299b97d9face098e3cc44fa6eb)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/license.bbclass')
-rw-r--r-- | meta/classes/license.bbclass | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index d4be478166..4f7842c3db 100644 --- a/meta/classes/license.bbclass +++ b/meta/classes/license.bbclass | |||
@@ -255,14 +255,9 @@ def get_boot_dependencies(d): | |||
255 | """ | 255 | """ |
256 | 256 | ||
257 | depends = [] | 257 | depends = [] |
258 | boot_depends_string = "" | ||
259 | taskdepdata = d.getVar("BB_TASKDEPDATA", False) | 258 | taskdepdata = d.getVar("BB_TASKDEPDATA", False) |
260 | # Only bootimg and bootdirectdisk include the depends flag | 259 | # Only bootimg includes the depends flag |
261 | boot_tasks = ["do_bootimg", "do_bootdirectdisk",] | 260 | boot_depends_string = d.getVarFlag("do_bootimg", "depends") or "" |
262 | |||
263 | for task in boot_tasks: | ||
264 | boot_depends_string = "%s %s" % (boot_depends_string, | ||
265 | d.getVarFlag(task, "depends") or "") | ||
266 | boot_depends = [dep.split(":")[0] for dep | 261 | boot_depends = [dep.split(":")[0] for dep |
267 | in boot_depends_string.split() | 262 | in boot_depends_string.split() |
268 | if not dep.split(":")[0].endswith("-native")] | 263 | if not dep.split(":")[0].endswith("-native")] |