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

Glen Barber gjb at FreeBSD.org
Thu Oct 31 03:29:32 UTC 2013


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

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 834 bytes
Desc: not available
URL: <http://lists.freebsd.org/pipermail/svn-src-all/attachments/20131030/b10d57f6/attachment.sig>


More information about the svn-src-all mailing list