From owner-cvs-src@FreeBSD.ORG Fri Jul 25 05:33:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B073737B401; Fri, 25 Jul 2003 05:33:39 -0700 (PDT) Received: from watery.cc.kogakuin.ac.jp (watery.cc.kogakuin.ac.jp [133.80.152.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 679BE43FBF; Fri, 25 Jul 2003 05:33:38 -0700 (PDT) (envelope-from nyan@jp.FreeBSD.org) Received: from localhost (localhost [IPv6:::1])h6PCXaFd081718; Fri, 25 Jul 2003 21:33:36 +0900 (JST) (envelope-from nyan@jp.FreeBSD.org) Date: Fri, 25 Jul 2003 21:31:23 +0900 (JST) Message-Id: <20030725.213123.74673434.nyan@jp.FreeBSD.org> To: ru@FreeBSD.org From: Takahashi Yoshihiro In-Reply-To: <200307250854.h6P8sfom098536@repoman.freebsd.org> References: <200307250854.h6P8sfom098536@repoman.freebsd.org> X-Mailer: Mew version 3.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release Makefile src/share/man/man7 release.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jul 2003 12:33:40 -0000 In article <200307250854.h6P8sfom098536@repoman.freebsd.org> Ruslan Ermilov writes: > ru 2003/07/25 01:54:41 PDT > > FreeBSD src repository > > Modified files: > release Makefile > share/man/man7 release.7 > Log: > Moved the boot floppy generation code out from release.9 to release.10. - sh -e ${DOFS_SH} mfsroot ${RD} ${MNT} \ + sh -e ${DOFS_SH} mfsroot-small ${RD} ${MNT} \ (snip) + @sh -e ${DOFS_SH} ${RD}/floppies/mfsroot-small.flp \ + ${RD} ${MNT} ${SMALLBOOTSIZE} ${RD}/mfsroot/mfsroot-small.gz \ + ${BOOTINODE} ${SMALLBOOTLABEL} This change breaks small floppy image support. The filename of MFS filesystem should be 'mfsroot', not 'mfsroot-small'. Because we use the following command to load MFS filesystem. > load -t mfs_root /mfsroot --- TAKAHASHI Yoshihiro