summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-26 14:50:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-27 08:58:58 +0000
commit82d05e2ecadabc646e227b065e2bcac086ab6f34 (patch)
tree4ae5a261e07f2c1c6e8f9b63689265576ec6999b
parent0060427f4ec3041286858da25541bd69980fb85e (diff)
downloadpoky-82d05e2ecadabc646e227b065e2bcac086ab6f34.tar.gz
bitbake.conf: Change build output message to list BUILD_SYS, TARGET_SYS and NATIVELSBSTRING
The build summary is meant to reflect key configuration variables. Information about the build system we're running on is important but currently missing from the information displayed. Printing TARGET_SYS removes the need to print TARGET_OS and TARGET_ARCH and we add BUILD_SYS and NATIVELSBSTRING to show information about the build system. [YOCTO #3456] (From OE-Core rev: 764cc1eb3043c84121f597d2271108b91052095e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/conf/bitbake.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 114c5e7091..420bdfa31a 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -631,7 +631,7 @@ export PATCH_GET="0"
631 631
632# Pre-build configuration output 632# Pre-build configuration output
633BUILDCFG_HEADER = "Build Configuration:" 633BUILDCFG_HEADER = "Build Configuration:"
634BUILDCFG_VARS = "BB_VERSION TARGET_ARCH TARGET_OS MACHINE DISTRO DISTRO_VERSION TUNE_FEATURES TARGET_FPU" 634BUILDCFG_VARS = "BB_VERSION BUILD_SYS NATIVELSBSTRING TARGET_SYS MACHINE DISTRO DISTRO_VERSION TUNE_FEATURES TARGET_FPU"
635BUILDCFG_VARS[type] = "list" 635BUILDCFG_VARS[type] = "list"
636BUILDCFG_NEEDEDVARS = "TARGET_ARCH TARGET_OS" 636BUILDCFG_NEEDEDVARS = "TARGET_ARCH TARGET_OS"
637BUILDCFG_NEEDEDVARS[type] = "list" 637BUILDCFG_NEEDEDVARS[type] = "list"