Re: [U-Boot] [PATCH 26/28] net: Add link-local addressing support

2012-02-13 Thread Mike Frysinger
On Monday 13 February 2012 15:21:12 Joe Hershberger wrote: > On Fri, Feb 3, 2012 at 6:42 AM, Mike Frysinger wrote: > > On Thursday 19 January 2012 19:53:29 Joe Hershberger wrote: > >> + NetOurGatewayIP = 0; > >> + ip_to_string(NetOurGatewayIP, tmp); > >> + setenv("gatewayip", tmp); > >>

Re: [U-Boot] [PATCH 26/28] net: Add link-local addressing support

2012-02-13 Thread Joe Hershberger
Hi Mike, On Fri, Feb 3, 2012 at 6:42 AM, Mike Frysinger wrote: > On Thursday 19 January 2012 19:53:29 Joe Hershberger wrote: >> +     NetOurGatewayIP = 0; >> +     ip_to_string(NetOurGatewayIP, tmp); >> +     setenv("gatewayip", tmp); >> + >> +     ip_to_string(NetOurSubnetMask, tmp); >> +     se

Re: [U-Boot] [PATCH 26/28] net: Add link-local addressing support

2012-02-03 Thread Mike Frysinger
On Thursday 19 January 2012 19:53:29 Joe Hershberger wrote: > --- a/README > +++ b/README > > - CONFIG_CMD_PCMCIA * PCMCIA support > + CONFIG_CMD_PCMCIA * PCMCIA support please omit unrelated whitespace changes > --- a/common/cmd_net.c > +++ b/common/cm

[U-Boot] [PATCH 26/28] net: Add link-local addressing support

2012-01-20 Thread Joe Hershberger
Code based on networking/zcip.c in busybox - commit 8531d76a15890c2c535908ce888b2e2aed35b172 Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Wolfgang Denk --- README | 15 +++- common/cmd_net.c | 30 + include/net.h|2 +- net/Makefile |4 +- net/arp.