From owner-freebsd-stable@FreeBSD.ORG Mon Jan 5 22:20:54 2009 Return-Path: Delivered-To: FreeBSD-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F665106564A for ; Mon, 5 Jan 2009 22:20:54 +0000 (UTC) (envelope-from rick@kiwi-computer.com) Received: from kiwi-computer.com (keira.kiwi-computer.com [63.224.10.3]) by mx1.freebsd.org (Postfix) with SMTP id 236D78FC16 for ; Mon, 5 Jan 2009 22:20:54 +0000 (UTC) (envelope-from rick@kiwi-computer.com) Received: (qmail 37420 invoked by uid 2001); 5 Jan 2009 21:54:12 -0000 Date: Mon, 5 Jan 2009 15:54:12 -0600 From: "Rick C. Petty" To: Brian Duke Message-ID: <20090105215412.GA35524@keira.kiwi-computer.com> References: <49600E2E.7070601@avioc.org> <3163F769-48B0-4CFC-8842-BBBDDAE78B51@gmail.com> <20090105032657.GA1842@cdnetworks.co.kr> <4961FACE.4060203@avioc.org> <008b01c96f65$517a9d60$f46fd820$@com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <008b01c96f65$517a9d60$f46fd820$@com> User-Agent: Mutt/1.4.2.3i Cc: FreeBSD-stable@FreeBSD.org Subject: Re: cvsup freebsd 6_2 to freebsd 7_1 not upgrading? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rick-freebsd2008@kiwi-computer.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2009 22:20:54 -0000 On Mon, Jan 05, 2009 at 11:41:40AM -0700, Brian Duke wrote: > > #cp /usr/share/examples/cvsup/standard-supfile /root/stand_sup > #vi /root/stand_sup > << >>>host=cvsup15.us.FreeBSD.org > << >>>tag=RELENG_7_1 > > #cd /usr/src > #cvsup -g -L2 /root/stand_sup > ... > #make -j4 buildworld; make -j4 buildkernel; make installkernel > > ... (come back a hour or so later) > #make installworld; reboot You should always reboot into the new kernel before running the install world, especially if updating the major version. I always boot into single-user to do my install world, although a new kernel should work with old userland. Although this isn't your problem. You should see the kernel's version at boot time (and through uname(1)), so somehow you're not installing the kernel. I'd probably change your line to: make -j4 buildworld buildkernel && make installkernel or just: make -j4 buildworld kernel && echo "success" -- Rick C. Petty