Date: Sun, 27 May 2001 21:05:36 -0700 From: Dima Dorfman <dima@unixfreak.org> To: John Hay <jhay@icomtek.csir.co.za> Cc: current@freebsd.org, bmah@freebsd.org Subject: Re: make release failure Message-ID: <20010528040536.43A833E28@bazooka.unixfreak.org> In-Reply-To: <200105280355.f4S3t7k84289@zibbi.icomtek.csir.co.za>; from jhay@icomtek.csir.co.za on "Mon, 28 May 2001 05:55:07 %2B0200 (SAT)"
next in thread | previous in thread | raw e-mail | index | archive | help
John Hay <jhay@icomtek.csir.co.za> writes: > > > A make release failed here with: > > > > > > ################################# > > > touch release.8 > > > Making fixit floppy. > > > disklabel: ioctl DIOCWLABEL: Operation not supported by device > > > Warning: Block size restricts cylinders per group to 6. > > > Warning: 1216 sector(s) in last cylinder unallocated > > > /dev/md0c: 2880 sectors in 1 cylinders of 1 tracks, 4096 sectors > > > 1.4MB in 1 cyl groups (6 c/g, 12.00MB/g, 384 i/g) > > > super-block backups (for fsck -b #) at: > > > 32 > > > 2556 blocks > > > Filesystem 1K-blocks Used Avail Capacity iused ifree %iused M > ount > > > ed on > > > /dev/md0c 1363 1297 66 95% 266 116 70% / > mnt > > > *** Filesystem is 1440 K, 66 left > > > *** 4000 bytes/inode, 116 left > > > cp: /usr/src/release/texts/FLOPPIES.TXT: No such file or directory > > > > What revision of src/release/Makefile do you have? You want 1.618. > > beast# fgrep '$FreeBSD' /usr/src/release/Makefile > # $FreeBSD: src/release/Makefile,v 1.618 2001/05/25 18:01:31 bmah Exp $ > beast# fgrep 'texts/FLOPPIES.TXT' /usr/src/release/Makefile > @cp ${.CURDIR}/texts/FLOPPIES.TXT ${RD}/floppies/README.TXT Could you please try the attached, untested patch? I don't know enough about the release build process to know if it should work, but I guess it's worth a shot. Bruce Mah (cc'd) should know whether it's the Right(tm) fix. Thanks, Dima Dorfman dima@unixfreak.org Index: Makefile =================================================================== RCS file: /stl/src/FreeBSD/src/release/Makefile,v retrieving revision 1.618 diff -u -r1.618 Makefile --- Makefile 2001/05/25 18:01:31 1.618 +++ Makefile 2001/05/28 04:03:26 @@ -694,7 +694,8 @@ @sh -e ${.CURDIR}/scripts/doFS.sh ${RD}/floppies/fixit.flp ${RD} \ ${MNT} ${FIXITSIZE} ${RD}/fixitfd ${FIXITINODE} ${FIXITLABEL} # Do our last minute floppies directory setup in a convenient place. - @cp ${.CURDIR}/texts/FLOPPIES.TXT ${RD}/floppies/README.TXT + @cp ${.CURDIR}/doc/${RELNOTES_LANG}/readme/article.txt \ + ${RD}/floppies/README.TXT @(cd ${RD}/floppies; md5 README.TXT *.flp > CHECKSUM.MD5) touch release.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010528040536.43A833E28>