From 118bf413747032f97e314ddd27cf348f2868f62b Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Mon, 1 May 2023 14:45:40 +0200 Subject: [PATCH] local.conf.common.inc.sample: Use defauls for numbers of threads and make Build system already calculates the optimized values. --- local.conf.common.inc.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/local.conf.common.inc.sample b/local.conf.common.inc.sample index 6e3572f..1c9f730 100644 --- a/local.conf.common.inc.sample +++ b/local.conf.common.inc.sample @@ -5,12 +5,12 @@ CONF_VERSION = "1" # Determine how many tasks bitbake should run in parallel: # NOTE: The build system already calculates the optimized values for your host system. # See: https://docs.yoctoproject.org/ref-manual/variables.html?highlight=distro_codename#term-BB_NUMBER_THREADS -BB_NUMBER_THREADS = "16" +#BB_NUMBER_THREADS = "16" # Determine how many processes make should run in parallel when running compile tasks. # NOTE: For your decision you can get information about core and threads at your machine with this command: # ~ $ lscpu | grep -E '^Thread|^CPU\(' # See: https://docs.yoctoproject.org/ref-manual/variables.html?highlight=distro_codename#term-PARALLEL_MAKE -PARALLEL_MAKE = "-j 8" +#PARALLEL_MAKE = "-j 8" ### Specifies the time (in seconds) after which to unload the BitBake server due to inactivity. # Set BB_SERVER_TIMEOUT to determine how long the BitBake server stays resident between invocations.