aboutsummaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-09 00:14:38 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-11 16:08:48 +0000
commitfa764a403da34bb0ca9fa3767a9e9dba8d685965 (patch)
treea981b5deb187d7900d5c6fd2a504a08adecf2126 /meta/conf
parent30a9f0fcf608815cc920de4aba8ec0d1cf467b07 (diff)
downloadopenembedded-core-contrib-fa764a403da34bb0ca9fa3767a9e9dba8d685965.tar.gz
base/bitbake.conf: Filter contents of PATH to only allow whitelisted tools
We currently have a determinism problem in that the host tools present in PATH can influence the build. In particular, the presence of pkg-config on the build host can mask missing pkgconfig class dependencies. This adds in a new HOSTTOOLS variable and then uses it to set up a directory of symlinks to the whitelisted host tools. This directory is placed as PATH instead of the usual /usr/bin:/bin and so on. This should improve determinism of builds and avoid the issues which have been particularly obvious since the introduction of recipe specific sysroots. If users find there is a tool missing, they can extend HOSTTOOLS from a global class or global conf file. Right now the settings should be enough to build everything in OE-Core. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/bitbake.conf18
-rw-r--r--meta/conf/layer.conf2
2 files changed, 20 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index f9df7cacd1..bc115117c9 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -453,6 +453,24 @@ export PATH
# Build utility info.
##################################################################
+# Tools needed to run builds with OE-Core
+HOSTTOOLS += " \
+ bash sh cut sed gcc ld git rm install which find xargs cat true mktemp \
+ grep tar gzip touch cp mv basename dirname tr getopt sort awk head tail \
+ mkdir patch uniq perl python chmod python3 ar strip expr ls make as \
+ ranlib egrep echo chown cpio tee wc wget bzip2 stat date rmdir od diff \
+ md5sum dd chrpath file pod2man gunzip python2.7 ln g++ [ false true \
+ uname test hostname nm objdump objcopy cmp printf env readlink gawk fgrep \
+ expand pwd sleep diffstat chgrp flock ldd strings rpcgen du makeinfo \
+ getconf mknod cpp readelf split \
+"
+
+# Tools needed to run testimage runtime image testing
+HOSTTOOLS += "ps stty ip ssh scp ping vi"
+
+# Link to these if present
+HOSTTOOLS_NONFATAL += "ccache pip3 ld.bfd ld.gold gcc-ar gpg sftp"
+
CCACHE ??= ""
# Disable ccache explicitly if CCACHE is null since gcc may be a symlink
# of ccache some distributions (e.g., Fedora 17).
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf
index 87c235fe12..739d82ea56 100644
--- a/meta/conf/layer.conf
+++ b/meta/conf/layer.conf
@@ -59,3 +59,5 @@ SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
oprofile->virtual/kernel \
"
+# We need to keep bitbake tools in PATH
+PATH := "${@os.path.dirname(bb.utils.which(d.getVar('PATH'),'bitbake'))}:${TMPDIR}/hosttools"