Date: Wed, 27 Sep 2006 11:09:23 +0900 From: SANETO Takanori <sanewo@ba2.so-net.ne.jp> To: Dag-Erling Smorgrav <des@FreeBSD.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 mount.c Message-ID: <4519DD53.8010005@ba2.so-net.ne.jp> In-Reply-To: <200609130838.k8D8cnW9063228@repoman.freebsd.org> References: <200609130838.k8D8cnW9063228@repoman.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
As for mount.c, following part should be MFC'ed as well. > @@ -628,6 +633,15 @@ > * not a real mount option. > */ > continue; > + } else if (strcmp(p, "late") == 0) { > + /* > + * "late" is used to prevent certain file > + * systems from being mounted before late > + * in the boot cycle; for instance, > + * loopback NFS mounts can't be mounted > + * before mountd starts. > + */ > + continue; > } else if (strcmp(p, "userquota") == 0) { > continue; > } else if (strncmp(p, userquotaeq, Dag-Erling Smorgrav wrote: > des 2006-09-13 08:38:49 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > etc/rc.d mountcritlocal > sbin/mount mount.8 mount.c > Added files: (Branch: RELENG_6) > etc/rc.d mountlate > Log: > MFC: "late" flag in fstab + mountlate script + necessary changes to mount(8) > > Approved by: re (kensmith) > > Revision Changes Path > 1.12.2.1 +2 -0 src/etc/rc.d/mountcritlocal > 1.1.2.1 +36 -0 src/etc/rc.d/mountlate (new) > 1.73.2.2 +20 -3 src/sbin/mount/mount.8 > 1.69.2.2 +9 -4 src/sbin/mount/mount.c > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4519DD53.8010005>