From owner-freebsd-current@FreeBSD.ORG Fri Jan 21 18:36:18 2005 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 B7CCB16A4E2 for ; Fri, 21 Jan 2005 18:36:18 +0000 (GMT) Received: from osi2.gua.net (osi2.gua.net [205.161.188.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAF8E43D31 for ; Fri, 21 Jan 2005 18:36:17 +0000 (GMT) (envelope-from kuuse@redantigua.com) Received: (qmail 53680 invoked by uid 89); 21 Jan 2005 18:36:17 -0000 Received: from kuuse@redantigua.com by osi2 by uid 89 with qmail-scanner-1.20 ( Clear:RC:0(168.234.207.100):. Processed in 0.175669 secs); 21 Jan 2005 18:36:17 -0000 Received: from unknown (HELO qc.gua.net) (kuuse@osint.net@168.234.207.100) by 0 with SMTP; 21 Jan 2005 18:36:16 -0000 From: Johan Kuuse Organization: Red Antigua To: Scot Hetzel Date: Fri, 21 Jan 2005 12:36:11 -0600 User-Agent: KMail/1.7.2 References: <000a01c4ffd2$86d5cc70$10bca1cd@widserver1> <200501211210.54960.kuuse@redantigua.com> <790a9fff05012110223252212a@mail.gmail.com> In-Reply-To: <790a9fff05012110223252212a@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501211236.11923.kuuse@redantigua.com> cc: freebsd-current@freebsd.org Subject: Re: Problem with crt1.o and init tls 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: Fri, 21 Jan 2005 18:36:18 -0000 The base/ directory: CHECKSUM.MD5 base.af base.al base.ar base.ax base.aa base.ag base.am base.as base.ay base.ab base.ah base.an base.at base.az base.ac base.ai base.ao base.au base.inf base.ad base.aj base.ap base.av base.mtree base.ae base.ak base.aq base.aw install.sh No sbin, bin, ubin, nor usbin whatsoever. :-( base/install.sh: ---------------------------------------------------------------------------------- #!/bin/sh # # $FreeBSD: src/release/scripts/base-install.sh,v 1.6 2002/04/30 09:57:21 ru Exp $ # if [ "`id -u`" != "0" ]; then echo "Sorry, this must be done as root." exit 1 fi echo "You are about to extract the base distribution into ${DESTDIR:-/} - are you SURE" echo -n "you want to do this over your installed system (y/n)? " read ans if [ "$ans" = "y" ]; then cat base.?? | tar --unlink -xpzf - -C ${DESTDIR:-/} fi ---------------------------------------------------------------------------------- This is the one to run? Best Regards, Johan > > base/install.sh > > you should see a bunch of sbin.??, bin.??, ubin.??, usbin.?? files in > there. > > Look at the base\install.sh and see if it also extracts the etc.?? > files. If it does, then you'll need to copy all theses files to a > temp dir and remove etc from the install.sh script so that it doesn't > overwrite your setup. > > Also, you should do this in single user mode with all filesystems mounted > rw. > > Scot > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"