From owner-freebsd-current@FreeBSD.ORG Thu Feb 21 15:58:38 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id AA747861 for ; Thu, 21 Feb 2013 15:58:38 +0000 (UTC) (envelope-from nparhar@gmail.com) Received: from mail-da0-f46.google.com (mail-da0-f46.google.com [209.85.210.46]) by mx1.freebsd.org (Postfix) with ESMTP id 86466CA for ; Thu, 21 Feb 2013 15:58:38 +0000 (UTC) Received: by mail-da0-f46.google.com with SMTP id p5so4187817dak.5 for ; Thu, 21 Feb 2013 07:58:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:date:from:to:cc:subject:message-id:mail-followup-to :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=VXWHkj2yAeci/HNX0cWMfZh7F0prk17t7H3lG8+ecw0=; b=t+af5Lk67UoqQemSNpFiUaLO4Fhgk//AKBYrq/xKBT62FnqL4Ky7vkeHgsjDXKLK+5 gYzihd+RHygD0A8cKuFAE6FqlbB9XxZrfJAWe7csVo7athsAjohczybZskrdXd/rdMK0 W7FTLoZwycvufYQAn4xQa8Tdm3OfYFfLT0SHXiy7k+oTb9anpBHuE6mL6pollIQ5DuRI LLeb2ClBQgmw5weJsJrkUtBzi0Awu+CHvbG2OzAwMNK49VIvtQ78JOhdP4mV1SvvWxRi Ki8jM4f2nAU6zpgDercYF1bvroNRmOe6CU+MkLCzEQyXrLAOFyuwkOrt+2ffgN40Eqrl ru2Q== X-Received: by 10.66.222.35 with SMTP id qj3mr60233726pac.69.1361461977482; Thu, 21 Feb 2013 07:52:57 -0800 (PST) Received: from itx (c-24-6-45-85.hsd1.ca.comcast.net. [24.6.45.85]) by mx.google.com with ESMTPS id kl4sm11489857pbc.31.2013.02.21.07.52.56 (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 21 Feb 2013 07:52:56 -0800 (PST) Date: Thu, 21 Feb 2013 07:52:53 -0800 From: Navdeep Parhar To: matt Subject: Re: r247095 Boot Failure Message-ID: <20130221155253.GB6838@itx> Mail-Followup-To: matt , Shawn Webb , FreeBSD-current References: <20130221153458.GA6838@itx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Cc: FreeBSD-current , Shawn Webb X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 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: Thu, 21 Feb 2013 15:58:38 -0000 On Thu, Feb 21, 2013 at 03:38:41PM +0000, matt wrote: > On Thu, Feb 21, 2013 at 3:34 PM, Navdeep Parhar wrote: > > > > > Take a look at the "-CURRENT userland regression" thread. You may be > > able to boot if you choose "safe mode" in the boot loader menu. > > > > Regards, > > Navdeep > > > > > What is safe mode as far as boot flags? This is the forth code that sets up safe mode: : safemode_enable ( -- ) s" set kern.smp.disabled=1" evaluate s" set hw.ata.ata_dma=0" evaluate s" set hw.ata.atapi_dma=0" evaluate s" set hw.ata.wc=0" evaluate s" set hw.eisa_slots=0" evaluate s" set kern.eventtimer.periodic=1" evaluate s" set kern.geom.part.check_integrity=0" evaluate ; loader.conf should be able to set up those variables too (temporarily, as a workaround). I wonder which one does the trick - smp.disabled or eventtimer_periodic, or ..? Regards, Navdeep > > boot -sv doesn't work on my system... > > Matt