Date: Wed, 30 Oct 2013 22:38:53 -0500 From: Nathan Whitehorn <nwhitehorn@freebsd.org> To: Glen Barber <gjb@FreeBSD.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, Mark Johnston <markj@FreeBSD.org>, src-committers@freebsd.org Subject: Re: svn commit: r257416 - head/sys/mips/alchemy Message-ID: <7A8C78BE-897B-4ECF-A23B-70E9EAF2681C@freebsd.org> In-Reply-To: <20131031032923.GK1782@glenbarber.us> References: <201310310227.r9V2RGTG062190@svn.freebsd.org> <20131031032923.GK1782@glenbarber.us>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?7A8C78BE-897B-4ECF-A23B-70E9EAF2681C>