From owner-freebsd-current@FreeBSD.ORG Tue Apr 21 08:54:23 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E54D106564A; Tue, 21 Apr 2009 08:54:23 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe14.swipnet.se [212.247.155.161]) by mx1.freebsd.org (Postfix) with ESMTP id ADED58FC12; Tue, 21 Apr 2009 08:54:22 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=YNtBZNMyWRoA:10 a=BKTb8bRlWoEA:10 a=WAOEPSaDDdRkyeIvKzwA:9 a=YKxvqXB6CPdSgFZT9z4yGd5Hw7gA:4 Received: from [81.191.55.181] (account mc467741@c2i.net HELO [10.36.2.183]) by mailfe14.swip.net (CommuniGate Pro SMTP 5.2.13) with ESMTPA id 485335792; Tue, 21 Apr 2009 10:54:21 +0200 From: Hans Petter Selasky To: freebsd-current@freebsd.org, Matthias Apitz Date: Tue, 21 Apr 2009 10:56:52 +0200 User-Agent: KMail/1.9.7 References: <20090421061411.GA4047@rebelion.Sisis.de> <200904210837.57231.hselasky@c2i.net> <20090421084747.GA3482@rebelion.Sisis.de> In-Reply-To: <20090421084747.GA3482@rebelion.Sisis.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200904211056.52969.hselasky@c2i.net> Cc: Andrew Thompson Subject: Re: USB key with -CURRENT, but /root not found on one laptop X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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, 21 Apr 2009 08:54:23 -0000 On Tuesday 21 April 2009, Matthias Apitz wrote: > El d=EDa Tuesday, April 21, 2009 a las 08:37:56AM +0200, Hans Petter Sela= sky=20 escribi=F3: > > On Tuesday 21 April 2009, Matthias Apitz wrote: > > > Hello, > > > > > > I've a boot-able USB key with -CURRENT from which I have booted and > > > installed fine my small EeePC. I now wanted to update with the same > > > procedure the laptop of my wife (which still runs RELENG_7) to make h= er > > > happy access to the wonderful world of -CURRENT :-) > > > > > > the laptop itself can't boot from USB devices but there is still the > > > old boot block on the disk which sees the USB as 'Drive 1' and offers > > > to boot from by typing F5: > > > > > > F1: FreeBSD > > > F5: Drive 1 > > > > > > I typed F5 > > ... > > additional information: I did the same on some other laptop I have and > there is a message: > > Root mount waiting for: ubus4 > > before the message > > da0: Removable Direct Access SCSI-2 device > da0: 40.000MB/s transfers > da0: 7712MB (15794176 512 byte sectors: 255H 63 S/T 983C) > > comes up and then again > > Root mount waiting for: ubus4 > Trying to mount root from ufs:/dev/da0sa1 > > which works fine and the system comes up from USB key; > > maybe this helps to figure out what the problem is; thx > > matthias Did you try to add a delay before the mounroot code is executed=20 in /sys/kern/vfs_mount.c ? Like: pause("WWAIT", hz * 10); =2D-HPS