From owner-freebsd-amd64@FreeBSD.ORG Thu Jan 20 16:12:05 2005 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B21D16A4CF for ; Thu, 20 Jan 2005 16:12:05 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02BAD43D2F for ; Thu, 20 Jan 2005 16:12:05 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by wproxy.gmail.com with SMTP id 58so3017wri for ; Thu, 20 Jan 2005 08:12:04 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=i3po18Kd675+Qj+uifF2TuVIUL0uXxUg1bjjXVrT5LjQoPcnGSeWm4ayUirNw8RbJBvouwQqVjKD8tW2Wai2OlkZUF1X1H6QnheW2VUy9g6YriYVNLakQ7ITKLZDlK+1IMDJIftMcwxlBSIYAivr+UdeVAGpAMlVhDw2lqRrpu4= Received: by 10.54.46.68 with SMTP id t68mr262863wrt; Thu, 20 Jan 2005 08:12:04 -0800 (PST) Received: by 10.54.29.4 with HTTP; Thu, 20 Jan 2005 08:12:04 -0800 (PST) Message-ID: <790a9fff050120081229a3ec6a@mail.gmail.com> Date: Thu, 20 Jan 2005 10:12:04 -0600 From: Scot Hetzel To: freebsd-stable@freebsd.org, freebsd-amd64@freebsd.org In-Reply-To: <20050119214229.GE1168@manor.msen.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20050119214229.GE1168@manor.msen.com> Subject: Re: Failure on today's CVS (stable, AMD) X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Scot Hetzel List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jan 2005 16:12:05 -0000 On Wed, 19 Jan 2005 16:42:29 -0500, Michael R. Wayne wrote: > 2) More importantly, I recovered by loading /boot/kernel.old/kernel > and the box is up BUT I am concerned that the NEXT time that I > do "make installkernel" I'll stomp on kernel.old losing this fallback > procedure. I can certainly copy /boot/kernel.old to /boot/kernel.save > but is there something else I should save? Or is there another > suggested procedure? > When I have a bad kernel I do the following after booting the good kernel. cd /boot rm -rf kernel cp -rp kernel.old kernel cp -rp kernel.old kernel.good This way I can reboot the box without going into the loader to load kernel.old. Scot