[oe-commits] [openembedded-core] 07/16: Revert "wic: Set a miniumum FAT16 volume size."

git at git.openembedded.org git at git.openembedded.org
Thu Apr 25 15:23:10 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 044434baf5a8889fe35e282b7f329d09d9bfa7c9
Author: Angus Lees <gus at inodes.org>
AuthorDate: Thu Mar 21 16:46:05 2019 +1100

    Revert "wic: Set a miniumum FAT16 volume size."
    
    This reverts commit f7dfb4d43247d3c13a4e0a3853007d63b9512b83.
    
    FAT16 volumes do not have a minimum size of 8250 blocks
    (== slightly over 4MB).  Exhibit A: floppy disks.
    
    The original commit message suggests this was a workaround for a bug in
    parted - in which case we should fix it there, or use the wic
    `--fixed-size` option to pass down an enforced minimum from a more
    context-aware point in the callstack.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/lib/wic/partition.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/wic/partition.py b/scripts/lib/wic/partition.py
index ca206ec..df31c17 100644
--- a/scripts/lib/wic/partition.py
+++ b/scripts/lib/wic/partition.py
@@ -322,7 +322,7 @@ class Partition():
 
         dosfs_cmd = "mkdosfs %s -i %s %s %s -C %s %d" % \
                     (label_str, self.fsuuid, size_str, extraopts, rootfs,
-                     max(8250, rootfs_size))
+                     rootfs_size)
         exec_native_cmd(dosfs_cmd, native_sysroot)
 
         mcopy_cmd = "mcopy -i %s -s %s/* ::/" % (rootfs, rootfs_dir)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list