summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-26 12:45:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-26 12:52:12 +0000
commit36e918b8a80a0175b5d04cfdd04ab6d19aeef594 (patch)
tree367bbcd3c5cfb1252891ed795d84ab62f2342053 /meta/conf/bitbake.conf
parent21f2c0b5cd9a53aba277aaaf27a6a5d562b2405f (diff)
downloadpoky-36e918b8a80a0175b5d04cfdd04ab6d19aeef594.tar.gz
Quoting fixes
We have various variables which are either not quoted at all or are half quoted. This patch fixes the bad exmaples so everything is consistent. (From OE-Core rev: 30253358f5e76fb7b25be27198b4c125e0dbdf2c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-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 f2666cb79c..7d0e0d84a9 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -387,7 +387,7 @@ IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}"
387 387
388# This option allows for a percentage overage of the actual image size rather than a 388# This option allows for a percentage overage of the actual image size rather than a
389# fixed extra space, this is space needed for initial startup and basic operations. 389# fixed extra space, this is space needed for initial startup and basic operations.
390IMAGE_OVERHEAD_FACTOR ?= 1.3 390IMAGE_OVERHEAD_FACTOR ?= "1.3"
391# This option allow for adding addition space in K above and beyond what the 391# This option allow for adding addition space in K above and beyond what the
392# IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ... 392# IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ...
393# To set a fixed size then overrideing IMAGE_ROOTFS_SIZE with the max size one wants 393# To set a fixed size then overrideing IMAGE_ROOTFS_SIZE with the max size one wants