From owner-freebsd-current@FreeBSD.ORG Tue Aug 19 14:50:32 2003 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 E9B4D16A4BF for ; Tue, 19 Aug 2003 14:50:32 -0700 (PDT) Received: from mail.westbend.net (ns1.westbend.net [216.47.253.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id F208743F93 for ; Tue, 19 Aug 2003 14:50:29 -0700 (PDT) (envelope-from hetzelsw@westbend.net) Received: from ADMIN00 (admin00.westbend.net [216.47.253.17]) by mail.westbend.net (8.12.9/8.12.9) with SMTP id h7JLoM60069315; Tue, 19 Aug 2003 16:50:27 -0500 (CDT) (envelope-from hetzelsw@westbend.net) Message-ID: <020001c3669b$9ce03810$11fd2fd8@westbend.net> From: "Scot W. Hetzel" To: "Shin-ichi Yoshimoto" References: <20030817085438.GQ4672@roark.gnf.org> <20030817204742924602.GyazMail.yosimoto@waishi.jp> <20030817185136.GT4672@roark.gnf.org> <20030817190534.GU4672@roark.gnf.org> <20030818042853095552.GyazMail.yosimoto@waishi.jp> <20030818090513616185.GyazMail.yosimoto@waishi.jp> Date: Tue, 19 Aug 2003 16:46:16 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-0.3 required=8.0 tests=QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01, USER_AGENT_OE version=2.43 cc: current@FreeBSD.ORG Subject: Re: HEADS UP: dynamic root support now in the tree 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: Tue, 19 Aug 2003 21:50:33 -0000 From: "Shin-ichi Yoshimoto" > Subject: Re: HEADS UP: dynamic root support now in the tree, > On Mon, 18 Aug 2003 04:28:53 +0900, Shin-ichi Yoshimoto wrote: > > Thanks Gordon. I can save a space :-) > > I found another problem in src/Makefile.inc > > [snip] > .if ${TARGET_ARCH} == ${MACHINE_ARCH} && !defined(DISTDIR) && \ > (!defined(DESTDIR) || empty(DESTDIR) || ${DESTDIR} == "/") > @echo "Checking to see if your booted kernel is fresh enough.." > ${.OBJDIR}/bin/sh/sh -c \ > 'echo "Testing installed kernel for new sigaction(2) > syscall"' > @echo "Seems ok.." > .endif > [snip] > > ${.OBJDIR}/bin/sh/sh is dynamically-linked if WITH_DYNAMICROOT is > defined. But sh cannot find /libexec/ld-elf.so.1 before instaling > /libexec/ld-elf.so.1. > > Is this right ? > I stumbled accross this problem too. My solution was to copy /usr/libexec/ld-elf.so.1 to /libexec and then try the "make installworld" again. We're going to need a solution for those that are going from a system (4.x, 5.0, 5.1) previous to the WITH_DYNAMIC_ROOT changes. Scot