On Thu, Oct 27, 2011 at 02:18, Simon Glass wrote: > --- a/net/net.c > +++ b/net/net.c > > - if (!strcmp(nretry, "yes")) > + if (*nretry == 'y') not sure about this as it makes it hard to add code in the future if we care about compatibility. if we support just "y", people will start using it. -mike