From owner-cvs-all@FreeBSD.ORG Wed Sep 27 02:10:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E4FC16A417; Wed, 27 Sep 2006 02:10:24 +0000 (UTC) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from mx09.ms.so-net.ne.jp (mx09.ms.so-net.ne.jp [202.238.82.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 186D743D55; Wed, 27 Sep 2006 02:10:23 +0000 (GMT) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from [127.0.0.1] (p62a1f6.tkyoac00.ap.so-net.ne.jp [219.98.161.246]) by mx09.ms.so-net.ne.jp with ESMTP id k8R29OvT021383; Wed, 27 Sep 2006 11:10:14 +0900 (JST) Message-ID: <4519DD53.8010005@ba2.so-net.ne.jp> Date: Wed, 27 Sep 2006 11:09:23 +0900 From: SANETO Takanori User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Dag-Erling Smorgrav References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> In-Reply-To: <200609130838.k8D8cnW9063228@repoman.freebsd.org> X-Enigmail-Version: 0.93.2.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2006 02:10:24 -0000 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"