From: Chen Qi Date: Mon, 16 Oct 2017 02:20:41 +0000 (+0800) Subject: bitbake.conf: add ssh to HOSTTOOLS_NONFATAL X-Git-Tag: 2017-10~4 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=50e7619aebae5351e9a41fe1b909a31b9e383f0a;p=openembedded-core.git bitbake.conf: add ssh to HOSTTOOLS_NONFATAL We changed to make tools required by testimage to be included conditionally. This resulted in users who use ssh for git fetching having failures. Add ssh to HOSTTOOLS_NONFATAL to make things work for the above situation. [YOCTO #12227] Signed-off-by: Chen Qi Signed-off-by: Ross Burton --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 0eefb86d13..4fba9d6f02 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -487,7 +487,7 @@ HOSTTOOLS += " \ 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" +HOSTTOOLS_NONFATAL += "aws ccache gcc-ar gpg ld.bfd ld.gold nc sftp socat ssh sudo" # Temporary add few more detected in bitbake world HOSTTOOLS_NONFATAL += "join nl size yes zcat"