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
=======