summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/partition.py
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2016-06-02 13:49:33 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-03 13:13:30 +0100
commit469e56b1a7c8da38cb4c572c5609c86b8c9768dd (patch)
treea9d0679ea912541b89a24e4f308496d0a4405f07 /scripts/lib/wic/partition.py
parent48bc62378a3705730f376ca03c2d6efe7a98d924 (diff)
downloadpoky-469e56b1a7c8da38cb4c572c5609c86b8c9768dd.tar.gz
image-live, image-vm, wic: Remove fs size workaround
Since mtools has been patched to live with filesystems with sizes not divisible by sectors-per-track, we no longer need to try to set the size based on our guess of the sectors-per-track dosfstools is going to use. (From OE-Core rev: 334e32af88b310ff1ed950d127a6dedeb460f8d0) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/partition.py')
-rw-r--r--scripts/lib/wic/partition.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/lib/wic/partition.py b/scripts/lib/wic/partition.py
index 34fd7d6a72..30cd320a30 100644
--- a/scripts/lib/wic/partition.py
+++ b/scripts/lib/wic/partition.py
@@ -281,14 +281,6 @@ class Partition():
281 msger.debug("Added %d extra blocks to %s to get to %d total blocks" % \ 281 msger.debug("Added %d extra blocks to %s to get to %d total blocks" % \
282 (extra_blocks, self.mountpoint, blocks)) 282 (extra_blocks, self.mountpoint, blocks))
283 283
284 # Ensure total sectors is an integral number of sectors per
285 # track or mcopy will complain. Sectors are 512 bytes, and we
286 # generate images with 32 sectors per track. This calculation
287 # is done in blocks, thus the mod by 16 instead of 32. Apply
288 # sector count fix only when needed.
289 if blocks % 16 != 0:
290 blocks += (16 - (blocks % 16))
291
292 label_str = "-n boot" 284 label_str = "-n boot"
293 if self.label: 285 if self.label:
294 label_str = "-n %s" % self.label 286 label_str = "-n %s" % self.label