diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-03-17 15:18:35 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-22 11:35:19 +0000 |
commit | d60ede331558efc93011dee6f157028174b9c5a1 (patch) | |
tree | 646c1057a6b37387832692d522cc5db852f5d0af | |
parent | 0e4ccf17341e24a3366c701b4740f29533074e5e (diff) | |
download | poky-d60ede331558efc93011dee6f157028174b9c5a1.tar.gz |
bitbake.conf: add sudo to HOSTTOOLS_NONFATAL
runqemu is using sudo to configure tap networking. Without sudo
in HOSTTOOLS_NONFATAL it may cause bitbake -c testimage to fail
with this error:
runqemu - INFO - Setting up tap interface under sudo
/bin/sh: sudo: command not found
(From OE-Core rev: 716e0524cfbcac2eb272be1014280833b74bc5c4)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 561167a598..e18b180566 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -469,7 +469,7 @@ HOSTTOOLS += " \ | |||
469 | HOSTTOOLS += "ps stty ip ssh scp ping vi" | 469 | HOSTTOOLS += "ps stty ip ssh scp ping vi" |
470 | 470 | ||
471 | # Link to these if present | 471 | # Link to these if present |
472 | HOSTTOOLS_NONFATAL += "ccache ld.bfd ld.gold gcc-ar gpg sftp nc socat" | 472 | HOSTTOOLS_NONFATAL += "ccache ld.bfd ld.gold gcc-ar gpg sftp nc socat sudo" |
473 | 473 | ||
474 | # Temporary add few more detected in bitbake world | 474 | # Temporary add few more detected in bitbake world |
475 | HOSTTOOLS_NONFATAL += "join nl size yes zcat" | 475 | HOSTTOOLS_NONFATAL += "join nl size yes zcat" |