layerindex-web/conf/local.conf
Paul Eggleton 24739d9369 local.conf: allow for upstream_tracking.inc to be missing
In OE-Core commit 22447eba250656489a6ed636fe58cb304d74e975,
conf/distro/include/upstream_tracking.inc has been removed, so allow the
file to be missing by changing require to include.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2019-02-14 10:05:53 +13:00

27 lines
1.0 KiB
Plaintext

#
# This is a version of local.conf trimmed specially for parsing recipes
# within the OE Layer index update script. Since we're not doing any
# actual building and many variables are defaulted via bitbake.conf or
# the OE-Core basic distro config, we don't need to set very much.
# Just select something basic here:
MACHINE = "qemux86"
# OE-Core basic distro configuration
DISTRO = ""
# We're not doing any building, no need to error on missing host tools,
# but move them to HOSTTOOLS_NONFATAL just in case any do get called
# from anonymous python or python expressions
HOSTTOOLS_NONFATAL := "${@d.getVar('HOSTTOOLS', True) or ''} ${@d.getVar('HOSTTOOLS_NONFATAL', True) or ''}"
# We do definitely need gcc since populate_sdk_base.bbclass refers to
# oe.utils.get_gcc_version() in a python expression
HOSTTOOLS = "gcc"
# Recipe reporting system configuration
#require conf/distro/include/maintainers.inc
#require conf/distro/include/distro_alias.inc
#include conf/distro/include/upstream_tracking.inc
#require conf/distro/include/package_regex.inc