From owner-svn-src-head@FreeBSD.ORG Thu Oct 31 03:39:02 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7C639EB4; Thu, 31 Oct 2013 03:39:02 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from smtpauth4.wiscmail.wisc.edu (wmauth4.doit.wisc.edu [144.92.197.145]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 475D32B5D; Thu, 31 Oct 2013 03:39:02 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed; delsp=yes Received: from avs-daemon.smtpauth4.wiscmail.wisc.edu by smtpauth4.wiscmail.wisc.edu (Oracle Communications Messaging Server 7u4-27.01(7.0.4.27.0) 64bit (built Aug 30 2012)) id <0MVI00H00K8MW200@smtpauth4.wiscmail.wisc.edu>; Wed, 30 Oct 2013 22:39:01 -0500 (CDT) X-Spam-PmxInfo: Server=avs-4, Version=6.0.3.2322014, Antispam-Engine: 2.7.2.2107409, Antispam-Data: 2013.10.31.33015, SenderIP=0.0.0.0 X-Spam-Report: AuthenticatedSender=yes, SenderIP=0.0.0.0 Received: from [10.0.2.100] (adsl-76-208-69-44.dsl.mdsnwi.sbcglobal.net [76.208.69.44]) by smtpauth4.wiscmail.wisc.edu (Oracle Communications Messaging Server 7u4-27.01(7.0.4.27.0) 64bit (built Aug 30 2012)) with ESMTPSA id <0MVI001CLKSVC610@smtpauth4.wiscmail.wisc.edu>; Wed, 30 Oct 2013 22:38:57 -0500 (CDT) Message-id: <7A8C78BE-897B-4ECF-A23B-70E9EAF2681C@freebsd.org> From: Nathan Whitehorn To: Glen Barber In-reply-to: <20131031032923.GK1782@glenbarber.us> Subject: Re: svn commit: r257416 - head/sys/mips/alchemy Date: Wed, 30 Oct 2013 22:38:53 -0500 References: <201310310227.r9V2RGTG062190@svn.freebsd.org> <20131031032923.GK1782@glenbarber.us> X-Mailer: Apple Mail (2.936) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, Mark Johnston , src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 03:39:02 -0000 On Oct 30, 2013, at 10:29 PM, Glen Barber wrote: > On Thu, Oct 31, 2013 at 02:27:16AM +0000, Mark Johnston wrote: >> Author: markj >> Date: Thu Oct 31 02:27:16 2013 >> New Revision: 257416 >> URL: http://svnweb.freebsd.org/changeset/base/257416 >> >> Log: >> Fix a typo introduced in r257338. >> >> Modified: >> head/sys/mips/alchemy/obio.c >> >> Modified: head/sys/mips/alchemy/obio.c >> = >> = >> = >> = >> = >> = >> = >> = >> = >> ===================================================================== >> --- head/sys/mips/alchemy/obio.c Thu Oct 31 02:21:48 2013 (r257415) >> +++ head/sys/mips/alchemy/obio.c Thu Oct 31 02:27:16 2013 (r257416) >> @@ -158,7 +158,7 @@ static int >> obio_probe(device_t dev) >> { >> >> - return (BUS_PROBE_NO_WILDCARD); >> + return (BUS_PROBE_NOWILDCARD); >> } >> >> static int > > FWIW, I think this (and the previous related changes) prevent me from > getting close to mounting the root filesystem on the TP-WN1043ND. > > Specifically, with the 'return (BUS_PROBE_NOWILDCARD);', entering > '?' at > mountroot prompt (after sio0 is failed to be probed), I cannot view > what > devices contain filesystems to mount. > > Doing: > > # sed -i '' -e 's/BUS_PROBE_NOWILDCARD/0/' sys/mips/atheros/* > > I can at least see that flash/spi0 has *something* mountable. But, > there are other issues here, yet to be determined. > > Glen BUS_PROBE_NOWILDCARD should be a no-op for these devices, since there shouldn't be any wildcard devices on nexus. Any chance you could post a before/after dmesg? -Nathan