From owner-freebsd-current@freebsd.org Mon May 2 04:32:14 2016 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8940B220F1 for ; Mon, 2 May 2016 04:32:14 +0000 (UTC) (envelope-from dave4431@verizon.net) Received: from omr-m011e.mx.aol.com (omr-m011e.mx.aol.com [204.29.186.11]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A28CE1BEB for ; Mon, 2 May 2016 04:32:14 +0000 (UTC) (envelope-from dave4431@verizon.net) Received: from mtaout-aah02.mx.aol.com (mtaout-aah02.mx.aol.com [172.27.1.142]) by omr-m011e.mx.aol.com (Outbound Mail Relay) with ESMTP id A3415380008F for ; Mon, 2 May 2016 00:26:58 -0400 (EDT) Received: from asus-home1.asus-home1.domain (0x617375732d686f6d65312e617375732d686f6d65312e646f6d61696e [71.104.152.159]) by mtaout-aah02.mx.aol.com (MUA/Third Party Client Interface) with ESMTPA id CCADA3800008A for ; Mon, 2 May 2016 00:26:56 -0400 (EDT) Date: Mon, 2 May 2016 04:26:47 +0000 From: Dave Males To: freebsd-current@freebsd.org Subject: Re: boot fails "Can't stat /dev/da0a: No such file or directory" Message-ID: <20160502042647.GC36305@asus-home1.asus-home1.domain> Reply-To: https: //docs.freebsd.org/cgi/mid.cgi?db=mid&id=57247294.4050607@menhennitt.com.au MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.6.0 (2016-04-01) x-aol-global-disposition: G x-aol-sid: 3039ac1b018e5726d7103679 X-AOL-IP: 71.104.152.159 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.22 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: Mon, 02 May 2016 04:32:14 -0000 On 30/04/2016 06:53 PM, Graham Menhennitt wrote: > Hi all, > > I have a USB disk that I use for backup. Up till now, it's mounted > without any problems at boot time. After updating to -current as of > yesterday, it doesn't mount and causes the boot to fail. > > My /etc/fstab looks like: > > # Device Mountpoint FStype Options Dump Pass# > > /dev/ada0s1a / ufs rw 1 1 > /dev/ada0s1b none swap sw 0 0 > /dev/da0a /backup ufs rw,late 1 1 > > > I tried adding the "late" to fix the problem, but it doesn't help. > > The error message is: > > /dev/ada0s1a: clean... > Can't stat /dev/da0a: No such file or directory > Unknown error; help! > ERROR: ABORTING BOOT (sending SIGTERM to parent)! > > > (hand transcribed - maybe typos) > > Can anybody help, please. > > Thanks, > Graham >Sorry, I forgot to mention... > >I commented out that line from fstab which allows the boot to complete. >I can then manually mount it without any problems. It looks like the >device doesn't get created early enough. > >Graham Hi, I had the same error message with a USB storage drive, so I used kern.cam.boot_delay="10000" in /boot/loader.conf with success. My /etc/fstab is /dev/da1p1 /mnt/usb1 ufs rw 2 2 Have a look at /boot/defaults/loader.conf under Kernel tunables. Dave