summaryrefslogtreecommitdiff
path: root/local.conf
diff options
context:
space:
mode:
authorRui Miguel Silva <rui.silva@linaro.org>2019-07-12 16:50:56 +0100
committerTushar Khandelwal <tushar.khandelwal@arm.com>2019-09-02 16:07:31 +0100
commit59ad928eaaa37cee8488cbdf803e11279470f918 (patch)
tree5ee3d493cd6766c625f783b175652b83260760d5 /local.conf
parent124232d283fa82ef67c4f6622ca1279be6903255 (diff)
meta-arm-config: add initial configuration to meta-armCA5-DESIGNSTART-2019.09.16CA5-DESIGNSTART-19.09.13CA5-DESIGNSTART-19.03
add initial support and configuration to build sw stack using the meta-arm layers for Arm platforms. Change-Id: Ic7b59669fb902921bdacf29d217bfc5379174230 Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
Diffstat (limited to 'local.conf')
-rw-r--r--local.conf53
1 files changed, 53 insertions, 0 deletions
diff --git a/local.conf b/local.conf
new file mode 100644
index 0000000..857619f
--- /dev/null
+++ b/local.conf
@@ -0,0 +1,53 @@
+
+# CONF_VERSION is increased each time build/conf/ changes incompatibly
+CONF_VERSION = "1"
+
+# Which files do we want to parse:
+BBMASK = ""
+
+# Don't generate the mirror tarball for SCM repos, the snapshot is enough
+BB_GENERATE_MIRROR_TARBALLS = "0"
+
+# Disable build time patch resolution. This would lauch a devshell
+# and wait for manual intervention. We disable it.
+PATCHRESOLVE = "noop"
+
+#
+# Parallelism Options
+#
+# These two options control how much parallelism BitBake should use. The first
+# option determines how many tasks bitbake should run in parallel:
+# Default to setting automatically based on cpu count
+BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
+
+#
+# The second option controls how many processes make should run in parallel when
+# running compile tasks:
+# Default to setting automatically based on cpu count
+PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
+
+#
+# Shared-state files from other locations
+#
+# Shared state files are prebuilt cache data objects which can
+# used to accelerate build time. This variable can be used to configure the system
+# to search other mirror locations for these objects before it builds the data itself.
+#
+# This can be a filesystem directory, or a remote url such as http or ftp. These
+# would contain the sstate-cache results from previous builds (possibly from other
+# machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the
+# cache locations to check for the shared objects.
+#SSTATE_MIRRORS ?= "\
+#file://.* http://someserver.tld/share/sstate/ \n \
+#file://.* file:///some/local/dir/sstate/"
+
+# enable PR service on build machine itself
+# its good for a case when this is the only builder
+# generating the feeds
+#PRSERV_HOST = "localhost:0"
+
+# Override default FETCHCMD_wget with increased timeout parameters
+# -t: number of tries (default was 2)
+# -T: network timeout in seconds (default was 30)
+# The rest of the parameters are the same.
+FETCHCMD_wget = "/usr/bin/env wget -t 10 -T 90 -nv --passive-ftp --no-check-certificate"