<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/net, branch v2009.03-rc1</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/net?h=v2009.03-rc1</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/net?h=v2009.03-rc1'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2009-02-17T00:05:53Z</updated>
<entry>
<title>Add eth_get_dev_by_index</title>
<updated>2009-02-17T00:05:53Z</updated>
<author>
<name>Andy Fleming</name>
<email>afleming@freescale.com</email>
</author>
<published>2009-02-11T21:07:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9e56986a2b74d197f51eca70fad7b836b1900c4d'/>
<id>urn:sha1:9e56986a2b74d197f51eca70fad7b836b1900c4d</id>
<content type='text'>
This allows code to iterate through the ethernet devices

Signed-off-by: Andy Fleming &lt;afleming@freescale.com&gt;
</content>
</entry>
<entry>
<title>net/sntp.c: move ifdef into Makefile COBJS-$(...)</title>
<updated>2009-02-10T06:53:54Z</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2009-02-06T02:04:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=638ed3e296e70fab286d157b7adedaaa4a09a474'/>
<id>urn:sha1:638ed3e296e70fab286d157b7adedaaa4a09a474</id>
<content type='text'>
Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fix IP alignment problem</title>
<updated>2009-01-29T07:59:28Z</updated>
<author>
<name>Olav Morken</name>
<email>olavmrk@gmail.com</email>
</author>
<published>2009-01-23T11:56:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=af8626e0c08a780d9ded1d9c4883a89355f60e75'/>
<id>urn:sha1:af8626e0c08a780d9ded1d9c4883a89355f60e75</id>
<content type='text'>
This patch removes volatile from:
volatile IP_t *ip = (IP_t *)xip;

Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
using volatile, which causes an exception since xip isn't aligned on a word
boundary.

Signed-off-by: Gunnar Rangoy &lt;gunnar@rangoy.com&gt;
Signed-off-by: Paul Driveklepp &lt;pauldriveklepp@gmail.com&gt;
Signed-off-by: Olav Morken &lt;olavmrk@gmail.com&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://git.denx.de/u-boot-net</title>
<updated>2008-12-09T00:00:24Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-12-09T00:00:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c645b181a9a848996d54a5e358bedabae1da566a'/>
<id>urn:sha1:c645b181a9a848996d54a5e358bedabae1da566a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update U-Boot's build timestamp on every compile</title>
<updated>2008-12-06T22:36:43Z</updated>
<author>
<name>Peter Tyser</name>
<email>ptyser@xes-inc.com</email>
</author>
<published>2008-11-03T15:30:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9'/>
<id>urn:sha1:561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9</id>
<content type='text'>
Use the GNU 'date' command to auto-generate a new U-Boot
timestamp on every compile.

Signed-off-by: Peter Tyser &lt;ptyser@xes-inc.com&gt;
</content>
</entry>
<entry>
<title>net: Fix TftpStart() ip:filename bug</title>
<updated>2008-12-05T06:51:54Z</updated>
<author>
<name>Peter Tyser</name>
<email>ptyser@xes-inc.com</email>
</author>
<published>2008-12-01T22:29:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6a86bb6c25376f0358478219fa28d7c84dd01ed0'/>
<id>urn:sha1:6a86bb6c25376f0358478219fa28d7c84dd01ed0</id>
<content type='text'>
The TftpStart() function modifies the 'BootFile'
string when 'BootFile' contains both an IP address
and filename (eg 1.2.3.4:/path/file). This causes
subsequent calls to TftpStart to incorrectly parse
the TFTP filename and server IP address to use.
For example:

=&gt; tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
Speed: 100, half duplex
Using eTSEC1 device
TFTP from server 10.52.0.62; our IP address is 10.52.253.79
                 ^^^^^^^^^^ CORRECT
Filename '/home/ptyser/non_existant'.
          ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
Load address: 0x100000
Loading: *
TFTP error: 'File not found' (1)
Starting again

eTSEC2: No link.
Speed: 100, half duplex
Using eTSEC1 device
TFTP from server 10.52.0.33; our IP address is 10.52.253.79
                 ^^^^^^^^^^ WRONG
Filename '10.52.0.62'.
          ^^^^^^^^^^ WRONG
Load address: 0x100000
Loading: *
TFTP error: 'File not found' (1)
Starting again

TftpStart() was modified to not modify the 'BootFile' string.

Signed-off-by: Peter Tyser &lt;ptyser@xes-inc.com&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</content>
</entry>
<entry>
<title>net: Add additional IP fragmentation check</title>
<updated>2008-12-05T06:51:54Z</updated>
<author>
<name>Peter Tyser</name>
<email>ptyser@xes-inc.com</email>
</author>
<published>2008-12-01T22:26:21Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d32c5be50bf0600bfdc54223ef341ee9c63db445'/>
<id>urn:sha1:d32c5be50bf0600bfdc54223ef341ee9c63db445</id>
<content type='text'>
Ignore IP packets which have the "more fragments" flag bit
set.  This flag indicates the IP packet is fragmented and
must be ignored by U-Boot.

Signed-off-by: Peter Tyser &lt;ptyser@xes-inc.com&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</content>
</entry>
<entry>
<title>net: Define IP flag field values</title>
<updated>2008-12-05T06:51:54Z</updated>
<author>
<name>Peter Tyser</name>
<email>ptyser@xes-inc.com</email>
</author>
<published>2008-12-01T22:26:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e0c07b868cab405ab4b5335a0247899bfc5ea0b6'/>
<id>urn:sha1:e0c07b868cab405ab4b5335a0247899bfc5ea0b6</id>
<content type='text'>
These defines were pulled from the "Add simple
IP/UDP fragmentation support" patch from Frank
Haverkamp &lt;haver@vnet.ibm.com&gt;.

Signed-off-by: Peter Tyser &lt;ptyser@xes-inc.com&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</content>
</entry>
<entry>
<title>Moved initialization of PPC4xx EMAC to cpu_eth_init()</title>
<updated>2008-11-10T05:38:05Z</updated>
<author>
<name>Ben Warren</name>
<email>biggerbadderben@gmail.com</email>
</author>
<published>2008-10-28T06:53:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=25a859066b3af1070eb69f12022113c0a91bd813'/>
<id>urn:sha1:25a859066b3af1070eb69f12022113c0a91bd813</id>
<content type='text'>
Removed initialization of the driver from net/eth.c

Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
Acked-by: Stefan Roese &lt;sr@denx.de&gt;
</content>
</entry>
<entry>
<title>Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC</title>
<updated>2008-11-10T05:38:04Z</updated>
<author>
<name>Ben Warren</name>
<email>biggerbadderben@gmail.com</email>
</author>
<published>2008-10-28T06:50:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=96e21f86e8266ed40759e5495ee461265d7f6d28'/>
<id>urn:sha1:96e21f86e8266ed40759e5495ee461265d7f6d28</id>
<content type='text'>
All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG

Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
Acked-by: Stefan Roese &lt;sr@denx.de&gt;
</content>
</entry>
</feed>
