On Wed, Feb 12, 2014 at 03:22:30PM +0800, Dave Young wrote: > We are using dracut --mount to pass fstab lines for mounting filesystems > other than rootfs. But we did not provide passno for filesystem checking. > > Add passno '2' for all the --mount targets. > > Tested in F19 guest. > > Signed-off-by: Dave Young <dyoung@xxxxxxxxxx> > --- > mkdumprd | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- kexec-tools.orig/mkdumprd > +++ kexec-tools/mkdumprd > @@ -104,7 +104,7 @@ to_mount() { > _o=$(findmnt -k -f -n -r -o OPTIONS $_dev) > _o=${_o/#ro/rw} #mount fs target as rw in 2nd kernel > _o="${_o},nofail" #with nofail set, systemd won't block for mount failure > - _mntopts="$_t $_o" > + _mntopts="$_t $_o 0 2" What is 0 here. I think you are trying to emulate the format of an fstab file and passing 5th and 6th field. I don't think they are filesystem options. If you trying to mount a file system with 0 and 2 passed as additional parameters, mount will complain that what is 0 and 2 it does not understand. I am CCing harald. He might have thoughts on what's the better way to pass the fsck_passno of filesystem being mounted. I would not mind of passno 2 is hardcoded for anything passed in using --mount option in dracut. Thanks Vivek -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html