diff options
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 18 | ||||
-rw-r--r-- | meta/conf/layer.conf | 2 |
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 | |||
453 | # Build utility info. | 453 | # Build utility info. |
454 | ################################################################## | 454 | ################################################################## |
455 | 455 | ||
456 | # Tools needed to run builds with OE-Core | ||
457 | HOSTTOOLS += " \ | ||
458 | bash sh cut sed gcc ld git rm install which find xargs cat true mktemp \ | ||
459 | grep tar gzip touch cp mv basename dirname tr getopt sort awk head tail \ | ||
460 | mkdir patch uniq perl python chmod python3 ar strip expr ls make as \ | ||
461 | ranlib egrep echo chown cpio tee wc wget bzip2 stat date rmdir od diff \ | ||
462 | md5sum dd chrpath file pod2man gunzip python2.7 ln g++ [ false true \ | ||
463 | uname test hostname nm objdump objcopy cmp printf env readlink gawk fgrep \ | ||
464 | expand pwd sleep diffstat chgrp flock ldd strings rpcgen du makeinfo \ | ||
465 | getconf mknod cpp readelf split \ | ||
466 | " | ||
467 | |||
468 | # Tools needed to run testimage runtime image testing | ||
469 | HOSTTOOLS += "ps stty ip ssh scp ping vi" | ||
470 | |||
471 | # Link to these if present | ||
472 | HOSTTOOLS_NONFATAL += "ccache pip3 ld.bfd ld.gold gcc-ar gpg sftp" | ||
473 | |||
456 | CCACHE ??= "" | 474 | CCACHE ??= "" |
457 | # Disable ccache explicitly if CCACHE is null since gcc may be a symlink | 475 | # Disable ccache explicitly if CCACHE is null since gcc may be a symlink |
458 | # of ccache some distributions (e.g., Fedora 17). | 476 | # 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 += " \ | |||
59 | oprofile->virtual/kernel \ | 59 | oprofile->virtual/kernel \ |
60 | " | 60 | " |
61 | 61 | ||
62 | # We need to keep bitbake tools in PATH | ||
63 | PATH := "${@os.path.dirname(bb.utils.which(d.getVar('PATH'),'bitbake'))}:${TMPDIR}/hosttools" | ||