svn commit: r257416 - head/sys/mips/alchemy

Nathan Whitehorn nwhitehorn at freebsd.org
Thu Oct 31 03:39:02 UTC 2013


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



More information about the svn-src-all mailing list