[oe-commits] [openembedded-core] 17/55: wic: Set a miniumum FAT16 volume size.

git at git.openembedded.org git at git.openembedded.org
Sat Mar 3 22:56:40 UTC 2018


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 f7dfb4d43247d3c13a4e0a3853007d63b9512b83
Author: Paulo Neves <ptsneves at gmail.com>
AuthorDate: Sun Feb 25 17:49:26 2018 +0100

    wic: Set a miniumum FAT16 volume size.
    
    Set a miniumum FAT16 volume size because images are
    not valid to parted if this minimum value is not respected.
    
    The value set is determined experimentally forr a logical
    sector size of 512. This fixed my local problem but, there
    may be better solutions.
    
    Signed-off-by: Paulo Neves <ptsneves at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 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 2178321..3fe5c4e 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,
-                     rootfs_size)
+                     max(8250, 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