mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 23:02:22 +02:00
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 (From OE-Core rev: be93e378506a85772503005294503cfc348a552c) Signed-off-by: Daniel Schultz <d.schultz@phytec.de> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
67ec097bc3
commit
28997864e2
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user