[oe-commits] [openembedded-core] 01/09: wic: partition: Update fsck parameters

git at git.openembedded.org git at git.openembedded.org
Fri Mar 31 11:29:32 UTC 2017


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 be93e378506a85772503005294503cfc348a552c
Author: Daniel Schultz <d.schultz at phytec.de>
AuthorDate: Thu Mar 30 09:07:13 2017 +0200

    wic: partition: Update fsck parameters
    
    These parameters are copied from the ext image class.
    
    -D will let fsck perform further directory optimizations
    -v might be helpful for debugging purpose
    
    Signed-off-by: Daniel Schultz <d.schultz at phytec.de>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    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 5edb340..939e667 100644
--- a/scripts/lib/wic/partition.py
+++ b/scripts/lib/wic/partition.py
@@ -267,7 +267,7 @@ class Partition():
             (self.fstype, extra_imagecmd, rootfs, label_str, rootfs_dir)
         exec_native_cmd(mkfs_cmd, native_sysroot, pseudo=pseudo)
 
-        mkfs_cmd = "fsck.%s -fy %s" % (self.fstype, rootfs)
+        mkfs_cmd = "fsck.%s -pvfD %s" % (self.fstype, rootfs)
         exec_native_cmd(mkfs_cmd, native_sysroot, pseudo=pseudo)
 
     def prepare_rootfs_btrfs(self, rootfs, oe_builddir, 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