From 06300055fa7a4501fc001d3a8360d8bbc91afcc1 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 22 Aug 2015 19:38:55 -0700 Subject: bitbake.conf: Define fallback DISTRO_NAME When using OE-Core only we miss this define and its now used in recipes like os-release, which goes undefined and when booting we see messages like Welcome to ${DISTRO_NAME} nodistro.0! This would change to Welcome to OpenEmbedded nodistro.0! Remove all trailing whitespaces while touching this file (From OE-Core rev: cf2383a63975ac7a51729a313fe0a52b559d2c61) (From OE-Core rev: 394f0d61d1211a0562a3b4d9d78e8984abd3b28f) Signed-off-by: Khem Raj Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/conf/bitbake.conf | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'meta/conf') diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 21f1698c2b..c382c58b2d 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -2,7 +2,7 @@ # Standard target filesystem paths. ################################################################## # -# If changing these values, beware that native/cross/nativesdk bbclass +# If changing these values, beware that native/cross/nativesdk bbclass # files may also need changes to keep in sync. # @@ -161,7 +161,7 @@ DATETIME = "${DATE}${TIME}" # Openembedded Software Prerequisites. ################################################################## -# python-native should be here but python relies on building +# python-native should be here but python relies on building # its own in staging ASSUME_PROVIDED = "\ bzip2-native \ @@ -417,7 +417,7 @@ IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}" # This option allows for a percentage overage of the actual image size rather than a # fixed extra space, this is space needed for initial startup and basic operations. IMAGE_OVERHEAD_FACTOR ?= "1.3" -# This option allows for adding additional space in K above and beyond what the +# This option allows for adding additional space in K above and beyond what the # IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ... # To set a fixed size then overriding IMAGE_ROOTFS_SIZE with the max size one wants # should do the trick @@ -646,18 +646,18 @@ export PKG_CONFIG_DISABLE_UNINSTALLED = "yes" ### Config file processing ### -# An empty distro leads to :: entries in OVERRIDES and FILEOVERRIDES which +# An empty distro leads to :: entries in OVERRIDES and FILEOVERRIDES which # is a bad idea. Setting a dummy value is better than a ton of anonymous python. DISTRO ??= "nodistro" - +DISTRO_NAME ??= "OpenEmbedded" # Overrides are processed left to right, so the ones that are named later take precedence. # You generally want them to go from least to most specific. -# +# # This means that an envionment variable named '_arm' overrides an # environment variable '' (when ${TARGET_ARCH} is arm). # An environment variable '_qemuarm' overrides '' and overrides -# '_arm' when ${MACHINE} is 'qemuarm'. -# If you use combination ie '_qemuarm_arm', then '_qemuarm_arm' will override +# '_arm' when ${MACHINE} is 'qemuarm'. +# If you use combination ie '_qemuarm_arm', then '_qemuarm_arm' will override # '_qemuarm' and then '' will be overriden with that value from '_qemuarm'. # And finally '_forcevariable' overrides any standard variable, with the highest priority. # @@ -706,7 +706,7 @@ MACHINE_TASK_PROVIDER ?= "${DEFAULT_TASK_PROVIDER}" # and no effect if less than it. IMAGE_ROOTFS_SIZE ??= "65536" -# Forcefully set CACHE now so future changes to things like +# Forcefully set CACHE now so future changes to things like # MACHINE don't change the path to the cache CACHE := "${CACHE}" @@ -755,7 +755,7 @@ BAD_RECOMMENDATIONS ?= "" MACHINE[unexport] = "1" # Make sure TARGET_ARCH isn't exported -# (breaks Makefiles using implicit rules, e.g. quilt, as GNU make has this +# (breaks Makefiles using implicit rules, e.g. quilt, as GNU make has this # in them, undocumented) TARGET_ARCH[unexport] = "1" -- cgit v1.2.3-54-g00ecf