From owner-freebsd-current@FreeBSD.ORG Wed May 19 18:07:40 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A35016A4CE for ; Wed, 19 May 2004 18:07:40 -0700 (PDT) Received: from out005.verizon.net (out005pub.verizon.net [206.46.170.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED47343D1F for ; Wed, 19 May 2004 18:07:39 -0700 (PDT) (envelope-from kent.hauser@verizon.net) Received: from localhost.invalid ([4.35.227.55]) by out005.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040520010732.GXYH1603.out005.verizon.net@localhost.invalid> for ; Wed, 19 May 2004 20:07:32 -0500 From: Kent Hauser (by way of & Hauser <>) Date: Wed, 19 May 2004 15:07:31 -1000 User-Agent: KMail/1.6 To: current@freebsd.org MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405191507.31379.kent.hauser@verizon.net> X-Authentication-Info: Submitted using SMTP AUTH at out005.verizon.net from [4.35.227.55] at Wed, 19 May 2004 20:07:32 -0500 X-Mailman-Approved-At: Thu, 20 May 2004 04:47:47 -0700 Subject: rescue needed in release/scripts/src-install.sh X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 May 2004 01:07:40 -0000 Hi, The rescue directory needs to be added to the "all" target in the src/install.sh script. Index: src-install.sh =================================================================== RCS file: /home/ncvs/src/release/scripts/src-install.sh,v retrieving revision 1.8 diff -u -r1.8 src-install.sh --- src-install.sh 8 Apr 2001 23:09:21 -0000 1.8 +++ src-install.sh 20 May 2004 01:03:54 -0000 @@ -12,14 +12,14 @@ echo "possible subcomponents are:" echo echo "base bin contrib etc games gnu include lib libexec" - echo "release sbin share sys tools ubin usbin" + echo "release rescue sbin share sys tools ubin usbin" echo echo "You may also specify all to extract all subcomponents." exit 1 fi if [ "$1" = "all" ]; then - dists="base bin contrib etc games gnu include lib libexec release sbin share sys tools ubin usbin" + dists="base bin contrib etc games gnu include lib libexec release rescue sbin share sys tools ubin usbin" else dists="$*" fi