summaryrefslogtreecommitdiffstats
path: root/meta/classes/qemuboot.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-09-26 00:23:35 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-25 14:15:15 +0100
commit5532c4d72e044e1ffa8ccea93368796d8d24b94f (patch)
treedc215494dfd2d10e690433a74dce09a1c52e2d4c /meta/classes/qemuboot.bbclass
parente4dae6320506db320d236c6b45f14f15a7c71c17 (diff)
downloadpoky-5532c4d72e044e1ffa8ccea93368796d8d24b94f.tar.gz
classes: drop image dependencies on TOPDIR variable
We don't need a dependency on this variable changing, and having one causes locked signature warnings during eSDK installation if you have INITRAMFS_IMAGE_* set (since TOPDIR will always be different between the eSDK and the environment in which it was built). Relates to [YOCTO #12102]. (From OE-Core rev: 073610af04be326f9245ca91714526b390fb72cd) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/qemuboot.bbclass')
-rw-r--r--meta/classes/qemuboot.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/qemuboot.bbclass b/meta/classes/qemuboot.bbclass
index bd2f01db23..7243cc5257 100644
--- a/meta/classes/qemuboot.bbclass
+++ b/meta/classes/qemuboot.bbclass
@@ -79,6 +79,7 @@ def qemuboot_vars(d):
79 return build_vars + [k for k in d.keys() if k.startswith('QB_')] 79 return build_vars + [k for k in d.keys() if k.startswith('QB_')]
80 80
81do_write_qemuboot_conf[vardeps] += "${@' '.join(qemuboot_vars(d))}" 81do_write_qemuboot_conf[vardeps] += "${@' '.join(qemuboot_vars(d))}"
82do_write_qemuboot_conf[vardepsexclude] += "TOPDIR"
82python do_write_qemuboot_conf() { 83python do_write_qemuboot_conf() {
83 import configparser 84 import configparser
84 85