summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2012-07-01 05:32:40 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-02 16:47:44 +0100
commitbf04836ca5f8c7e4c76cc0fbcc1aff73849248ea (patch)
treebf34479f0ebd9bf244579ca17f8e3132b6b378b8 /meta/conf
parent035503b7290a3ea85c9e5a9a9ca8a99f889baf30 (diff)
downloadpoky-bf04836ca5f8c7e4c76cc0fbcc1aff73849248ea.tar.gz
bitbake.conf: Tidy up a few comment typoes; no functional changes.
(From OE-Core rev: 935a7f3847bd86ed78418db5cb6dd98ac0b6e65d) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/bitbake.conf8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 9377ee6ba1..f6d6f7dc3b 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -368,7 +368,7 @@ DEPLOY_DIR_TOOLS = "${DEPLOY_DIR}/tools"
368PKGDATA_DIR = "${TMPDIR}/pkgdata/${MULTIMACH_TARGET_SYS}" 368PKGDATA_DIR = "${TMPDIR}/pkgdata/${MULTIMACH_TARGET_SYS}"
369 369
370################################################################## 370##################################################################
371# SDK variables, 371# SDK variables.
372################################################################## 372##################################################################
373 373
374SDK_NAME_PREFIX ?= "oecore" 374SDK_NAME_PREFIX ?= "oecore"
@@ -395,9 +395,9 @@ IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}"
395# This option allows for a percentage overage of the actual image size rather than a 395# This option allows for a percentage overage of the actual image size rather than a
396# fixed extra space, this is space needed for initial startup and basic operations. 396# fixed extra space, this is space needed for initial startup and basic operations.
397IMAGE_OVERHEAD_FACTOR ?= "1.3" 397IMAGE_OVERHEAD_FACTOR ?= "1.3"
398# This option allow for adding addition space in K above and beyond what the 398# This option allows for adding additional space in K above and beyond what the
399# IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ... 399# IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ...
400# To set a fixed size then overrideing IMAGE_ROOTFS_SIZE with the max size one wants 400# To set a fixed size then overriding IMAGE_ROOTFS_SIZE with the max size one wants
401# should do the trick 401# should do the trick
402IMAGE_ROOTFS_EXTRA_SPACE ?= "0" 402IMAGE_ROOTFS_EXTRA_SPACE ?= "0"
403 403
@@ -418,7 +418,7 @@ CCACHE ??= ""
418# Disable ccache explicitly if CCACHE is null since gcc may be a symlink 418# Disable ccache explicitly if CCACHE is null since gcc may be a symlink
419# of ccache some distributions (e.g., Fedora 17). 419# of ccache some distributions (e.g., Fedora 17).
420export CCACHE_DISABLE ??= "${@[0,1][d.getVar('CCACHE', True) == '']}" 420export CCACHE_DISABLE ??= "${@[0,1][d.getVar('CCACHE', True) == '']}"
421# Assign CCACHE_DIR a default vaule to fix a bug of ccache 3.1.7, 421# Assign CCACHE_DIR a default value to fix a bug of ccache 3.1.7,
422# since it would always create CCACHE_DIR/.ccache even if 422# since it would always create CCACHE_DIR/.ccache even if
423# CCACHE_DISABLE = 1. 423# CCACHE_DISABLE = 1.
424export CCACHE_DIR ??= "${@os.getenv('HOME')}" 424export CCACHE_DIR ??= "${@os.getenv('HOME')}"