From owner-freebsd-stable@FreeBSD.ORG Wed Apr 2 11:37:47 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 618C637B401 for ; Wed, 2 Apr 2003 11:37:47 -0800 (PST) Received: from chapel-hill.tfd.com (hnllhi1-ar3-4-3-111-082.hnllhi1.dsl-verizon.net [4.3.111.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B99F43FB1 for ; Wed, 2 Apr 2003 11:37:46 -0800 (PST) (envelope-from kent@chapel-hill.tfd.com) Received: from chapel-hill.tfd.com (localhost [127.0.0.1]) by chapel-hill.tfd.com (8.12.9/8.12.9) with ESMTP id h32JaCF3055869 for ; Wed, 2 Apr 2003 09:37:35 -1000 (HST) (envelope-from kent@chapel-hill.tfd.com) Received: (from kent@localhost) by chapel-hill.tfd.com (8.12.9/8.12.8/Submit) id h32JaBbo055868 for stable@freebsd.org; Wed, 2 Apr 2003 09:36:11 -1000 (HST) Date: Wed, 2 Apr 2003 09:36:11 -1000 (HST) From: Kent Hauser Message-Id: <200304021936.h32JaBbo055868@chapel-hill.tfd.com> To: stable@freebsd.org Subject: Re: BOOTMFS too big X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 19:37:47 -0000 I've tried again to `make release', but it again fails when making the floppy images. I'm running -STABLE as of yesterday and am confused as to why I'm unable to build a release all of a sudden. I find it especially odd as the source is stable with the upcoming release. My script to build a release (which I've used for some time) is attached. I removed /usr/obj before a `make buildworld' which proceeded this, and the destination directory was removed before running the script. In other words, everything was pristine. Any thoughts??? Thanks. Kent ========== "make.stable" script #!/bin/sh export CHROOTDIR=/home/kent/stable export RELEASETAG=RELENG_4 export CVSROOT=/home/ncvs export NOPORTS=YES export NODOC=YES export USA_RESIDENT=YES export MAKE_ISOS # export LOCAL_SCRIPT = # export LOCAL_DIRS = if ! kldstat -n vn > /dev/null 2>& 1; then kldload vn; fi cd /usr/src/release if [ -d $CHROOTDIR ]; then time make -k rerelease; else time make release; fi exit 0 ======== tail of log .... sh /usr/src/sys/conf/newvers.sh BOOTMFS cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extens ions -ansi -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/../include -I/us r/src/sys/contrib/ipfilter -D_KERNEL -include opt_global.h -mpreferred-sta ck-boundary=2 vers.c linking BOOTMFS text data bss dec hex filename 2650861 209180 210260 3070301 2ed95d BOOTMFS -------------------------------------------------------------- >>> Kernel build for BOOTMFS completed on Wed Apr 2 11:44:15 GMT 2003 -------------------------------------------------------------- cd /usr/obj/usr/src/sys/BOOTMFS; MAKEOBJDIRPREFIX=/usr/obj MACHINE_ARCH=i38 6 MACHINE=i386 OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec PERL5LIB=/ usr/obj/usr/src/i386/usr/libdata/perl/5.00503 GROFF_BIN_PATH=/usr/obj/usr/sr c/i386/usr/bin GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font G ROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac make KERNEL=BOOTMFS reins tall install -m 555 -o root -g wheel -fschg BOOTMFS /R/stage/kernels/BOOTMFS mv /R/stage/kernels/BOOTMFS /R/stage/image.kern/kernel Setting up /boot directory for kern floppy dload=0x200000 dsize=0x25000 isize=0x25000 entry=0x200000 nsize=0x11ae9 /R/stage/image.kern/kernel: 53.6% -- replaced with /R/stage/image.kern/ke rnel.gz sh -e /usr/src/release/scripts/doFS.sh /R/stage/floppies/kern.flp /R/stage /m nt 1440 /R/stage/image.kern 80000 fd1440 Warning: Block size restricts cylinders per group to 6. Warning: 1216 sector(s) in last cylinder unallocated /dev/rvnn0c: 2880 sectors in 1 cylinders of 1 tracks, 4096 sectors 1.4MB in 1 cyl groups (6 c/g, 12.00MB/g, 32 i/g) super-block backups (for fsck -b #) at: 32 /mnt: write failed, file system is full cpio: write error: No space left on device *** Error code 1 =======