summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2011-05-26 11:32:06 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-27 00:48:11 +0100
commit0eb48957ace8e4d6ac7943f361e0b3fbcf0d72da (patch)
tree9a97bb07c9f58a4cf9c54999bc6d490f25b0d4ce /meta/conf/bitbake.conf
parent64864500f38eb999238632ac069423e62b40230d (diff)
downloadpoky-0eb48957ace8e4d6ac7943f361e0b3fbcf0d72da.tar.gz
bitbake.conf: change IMAGE_ROOTFS_EXTRA_SPACE to soft (?=) default
(From OE-Core rev: c9205e01262f8a14c4a602642dba4583b9e7c746) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf11
1 files changed, 6 insertions, 5 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 35fd6f864f..d30738597a 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -347,13 +347,14 @@ IMAGE_BASENAME = "${PN}"
347IMAGE_NAME = "${IMAGE_BASENAME}-${MACHINE}-${DATETIME}" 347IMAGE_NAME = "${IMAGE_BASENAME}-${MACHINE}-${DATETIME}"
348IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}" 348IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}"
349 349
350# This option allows for a precentage overage of the actaul image size rather than a 350# This option allows for a percentage overage of the actual image size rather than a
351# fixed extra space 351# fixed extra space, this is space needed for initial startup and basic operations.
352IMAGE_OVERHEAD_FACTOR ?= 1.3 352IMAGE_OVERHEAD_FACTOR ?= 1.3
353# This option allow for adding addition space in K above and beyond what the 353# This option allow for adding addition space in K above and beyond what the
354# IMAGE_OVERHEAD_FACTOR might add. To set a fixed size then overrideing IMAGE_ROOTFS_SIZE 354# IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ...
355# with the max size one wants should do the trick 355# To set a fixed size then overrideing IMAGE_ROOTFS_SIZE with the max size one wants
356IMAGE_ROOTFS_EXTRA_SPACE = "0" 356# should do the trick
357IMAGE_ROOTFS_EXTRA_SPACE ?= "0"
357 358
358EXTRA_IMAGEDEPENDS = "" 359EXTRA_IMAGEDEPENDS = ""
359 360