summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@linux.intel.com>2014-10-29 17:04:20 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-31 10:18:22 +0000
commitd6cbbee29cf780a432a4a6f2cba1c2de00b30d43 (patch)
tree70c0e63a8de50a341fef25e7be0e94cd9ab8d286 /scripts
parentd6e0ea59b28877b4136f8c310287dc11aff5a410 (diff)
downloadpoky-d6cbbee29cf780a432a4a6f2cba1c2de00b30d43.tar.gz
wic: Use overhead factor when creating partitions from rootfs directories
When creating partitions sized to given rootfs directories, filesystem creation could fail in cases where the calculated target partition size was too small to contain the filesystem created using mkfs. This occurred in particular when creating partitions to contain very large filesystems such as those containing sdk image artifacts. This same limition is present in the oe-core image creation classes, which can be readily see by changing IMAGE_OVERHEAD_FACTOR from the default 1.3 to 1.0 and building a sato-sdk image. It should be possible to calculate required sizes exactly given the source rootfs and target filesystem types, but for now, to address the specific problem users are hitting in such situations, we'll just do exactly what oe-core does and define and use an IMAGE_OVERHEAD_FACTOR or 1.3 in those cases. Fixes [YOCTO #6863]. (From OE-Core rev: bbaef3ff5833fc1d97b7b028d7770834f62789da) (From OE-Core rev: c376804d451a200bf697d3f34e68d58726f5233c) Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/wic/kickstart/custom_commands/partition.py2
-rw-r--r--scripts/lib/wic/utils/oe/misc.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/scripts/lib/wic/kickstart/custom_commands/partition.py b/scripts/lib/wic/kickstart/custom_commands/partition.py
index 3950b43621..54a494e033 100644
--- a/scripts/lib/wic/kickstart/custom_commands/partition.py
+++ b/scripts/lib/wic/kickstart/custom_commands/partition.py
@@ -229,6 +229,7 @@ class Wic_PartData(Mic_PartData):
229 extra_blocks = IMAGE_EXTRA_SPACE 229 extra_blocks = IMAGE_EXTRA_SPACE
230 230
231 rootfs_size = actual_rootfs_size + extra_blocks 231 rootfs_size = actual_rootfs_size + extra_blocks
232 rootfs_size *= IMAGE_OVERHEAD_FACTOR
232 233
233 msger.debug("Added %d extra blocks to %s to get to %d total blocks" % \ 234 msger.debug("Added %d extra blocks to %s to get to %d total blocks" % \
234 (extra_blocks, self.mountpoint, rootfs_size)) 235 (extra_blocks, self.mountpoint, rootfs_size))
@@ -276,6 +277,7 @@ class Wic_PartData(Mic_PartData):
276 extra_blocks = IMAGE_EXTRA_SPACE 277 extra_blocks = IMAGE_EXTRA_SPACE
277 278
278 rootfs_size = actual_rootfs_size + extra_blocks 279 rootfs_size = actual_rootfs_size + extra_blocks
280 rootfs_size *= IMAGE_OVERHEAD_FACTOR
279 281
280 msger.debug("Added %d extra blocks to %s to get to %d total blocks" % \ 282 msger.debug("Added %d extra blocks to %s to get to %d total blocks" % \
281 (extra_blocks, self.mountpoint, rootfs_size)) 283 (extra_blocks, self.mountpoint, rootfs_size))
diff --git a/scripts/lib/wic/utils/oe/misc.py b/scripts/lib/wic/utils/oe/misc.py
index aa9b23582b..b0b5baab73 100644
--- a/scripts/lib/wic/utils/oe/misc.py
+++ b/scripts/lib/wic/utils/oe/misc.py
@@ -123,6 +123,7 @@ def add_wks_var(key, val):
123 123
124BOOTDD_EXTRA_SPACE = 16384 124BOOTDD_EXTRA_SPACE = 16384
125IMAGE_EXTRA_SPACE = 10240 125IMAGE_EXTRA_SPACE = 10240
126IMAGE_OVERHEAD_FACTOR = 1.3
126 127
127__bitbake_env_lines = "" 128__bitbake_env_lines = ""
128 129