From: Chen Qi Date: Sat, 30 Sep 2017 08:15:42 +0000 (+0800) Subject: bitbake.conf: add tools required by testimage to HOSTTOOLS conditionally X-Git-Tag: 2017-10~24 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8ca61a5464743ff85b6d26886112750d6ddd13e0;p=openembedded-core.git bitbake.conf: add tools required by testimage to HOSTTOOLS conditionally Add tools required by testimage to HOSTTOOLS only when testimage is inherited. These tools, as described in the comment, are only required by the testimage task. So this change should not have negtive effect. This would also solve build error on hosts which miss some tool such as scp. Signed-off-by: Chen Qi Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 6f53b23a67..0eefb86d13 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -484,7 +484,7 @@ HOSTTOOLS += " \ " # Tools needed to run testimage runtime image testing -HOSTTOOLS += "ip ping ps scp ssh stty" +HOSTTOOLS += "${@['', 'ip ping ps scp ssh stty'][bb.data.inherits_class('testimage', d)]}" # Link to these if present HOSTTOOLS_NONFATAL += "aws ccache gcc-ar gpg ld.bfd ld.gold nc sftp socat sudo"