From owner-svn-src-head@FreeBSD.ORG Fri Sep 3 09:34:15 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9724E1065812; Fri, 3 Sep 2010 09:34:15 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 86A2A8FC31; Fri, 3 Sep 2010 09:34:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o839YFY6039522; Fri, 3 Sep 2010 09:34:15 GMT (envelope-from phk@svn.freebsd.org) Received: (from phk@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o839YFeP039520; Fri, 3 Sep 2010 09:34:15 GMT (envelope-from phk@svn.freebsd.org) Message-Id: <201009030934.o839YFeP039520@svn.freebsd.org> From: Poul-Henning Kamp Date: Fri, 3 Sep 2010 09:34:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r212173 - head/tools/tools/sysbuild X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 09:34:15 -0000 Author: phk Date: Fri Sep 3 09:34:15 2010 New Revision: 212173 URL: http://svn.freebsd.org/changeset/base/212173 Log: We need to copy the ports config files before we launch the prefetch Modified: head/tools/tools/sysbuild/sysbuild.sh Modified: head/tools/tools/sysbuild/sysbuild.sh ============================================================================== --- head/tools/tools/sysbuild/sysbuild.sh Fri Sep 3 08:07:04 2010 (r212172) +++ head/tools/tools/sysbuild/sysbuild.sh Fri Sep 3 09:34:15 2010 (r212173) @@ -410,6 +410,9 @@ if [ "x${REMOTEDISTFILES}" != "x" ] ; th mount ${REMOTEDISTFILES} /freebsd/distfiles fi +log_it copy ports config files +(cd / ; find var/db/ports -print | cpio -dumpv /mnt ) + log_it "Start prefetch of ports distfiles" ports_prefetch & @@ -483,9 +486,6 @@ if [ -f /etc/localtime ] ; then cp /etc/localtime /mnt/etc fi -log_it copy ports config files -(cd / ; find var/db/ports -print | cpio -dumpv /mnt ) - log_it ldconfig in chroot chroot /mnt sh /etc/rc.d/ldconfig start