From owner-freebsd-stable Mon Sep 30 21:34:55 2002 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 F0D2937B401 for ; Mon, 30 Sep 2002 21:34:53 -0700 (PDT) Received: from scaup.mail.pas.earthlink.net (scaup.mail.pas.earthlink.net [207.217.120.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8228E43E3B for ; Mon, 30 Sep 2002 21:34:48 -0700 (PDT) (envelope-from kent@tfd.com) Received: from user-2ivf46a.dialup.mindspring.com ([165.247.144.202]) by scaup.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 17wEkB-0006bk-00 for stable@freebsd.org; Mon, 30 Sep 2002 21:34:47 -0700 Received: from tfd.com (localhost [127.0.0.1]) by user-2ivf46a.dialup.mindspring.com (8.12.6/8.12.6) with ESMTP id g914Yg0v001584 for ; Tue, 1 Oct 2002 00:34:43 -0400 (EDT) (envelope-from kent@tfd.com) Message-ID: <3D9925E2.10506@tfd.com> Date: Tue, 01 Oct 2002 00:34:42 -0400 From: Kent Hauser User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:0.9.4.1) Gecko/20020508 Netscape6/6.2.3 X-Accept-Language: en-us MIME-Version: 1.0 To: stable@freebsd.org Subject: make release CDs Content-Type: multipart/mixed; boundary="------------020106060701020301070801" Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------020106060701020301070801 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi, My script to build release CDs broke about 6 months ago & still doesn't work. Basically, the /R/cdrom directories aren't built, so mkisofs fails. I figured it'd be fixed by now -- am I missing something? My script attached. Thanks. Kent --------------020106060701020301070801 Content-Type: text/plain; name="make.stable" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="make.stable" #!/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 cd /usr/src/release if [ -d $CHROOTDIR ]; then time make -k rerelease; else time make release; fi # now make local CDROMs export MAKE_ISOS RD=$CHROOTDIR/R/stage/trees/bin TARGETS="iso.1" rm -rf $RD/etc-ch mkdir -p $RD/etc-ch tar cf - -C /etc . |(cd $RD/etc-ch && tar xpf -) (cd $CHROOTDIR/usr/obj/usr/src/release; rm -f $TARGETS) chroot $CHROOTDIR /bin/sh -c "cd /usr/src/release;make $TARGETS" --------------020106060701020301070801-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message