<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board, branch v1.3.0-rc2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/board?h=v1.3.0-rc2</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board?h=v1.3.0-rc2'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2007-09-16T15:20:37Z</updated>
<entry>
<title>TQM8xx[LM]: Fix broken environment alignment.</title>
<updated>2007-09-16T15:20:37Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-09-16T15:10:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=67c31036acaaaa992fc346cc89db0909a7e733c4'/>
<id>urn:sha1:67c31036acaaaa992fc346cc89db0909a7e733c4</id>
<content type='text'>
With recent toolchains, the environment sectors were no longer aligned to
sector boundaries. The reason was a combination of two bugs:

1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
   for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
   this gets defined, is not included here (and cannot be included
   without causing lots of problems).

   Added a new #define CFG_USE_PPCENV for all boards which really
   want to put the environment is a ".ppcenv" section.

2) The linker scripts just include environment.o, silently assuming
   that the objects in that file are really in the order in which
   they are coded in the C file, i. e. "environment" first, then
   "redundand_environment", and "env_size" last. However, current
   toolchains (GCC-4.x) reorder the objects, causing the environment
   data not to start on a flash sector boundary:

   Instead of:					we got:

	40008000 T environment			40008000 T env_size
	4000c000 T redundand_environment	40008004 T redundand_environment
	40010000 T env_size			4000c004 T environment

   Note: this patch fixes just the first part, and cures the alignment
   problem by making sure that "env_size" gets placed correctly. However,
   we still have a potential issue because primary and redundant
   environment sectors are actually swapped, i. e. we have now:

	40008000 T redundand_environment
	4000c000 T environment
	40010000 T env_size

   This shall be fixed in the next version.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>ColdFire: fix build error becasue of bad type of mii_init()</title>
<updated>2007-09-15T19:04:27Z</updated>
<author>
<name>Liew Tsi Chung-r5aahp</name>
<email>Tsi-chung.Liew@freescale.com</email>
</author>
<published>2007-09-13T23:06:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=dcb88630290d2bcd803386dd4c2be73142994c4f'/>
<id>urn:sha1:dcb88630290d2bcd803386dd4c2be73142994c4f</id>
<content type='text'>
Signed-off-by: TsiChungLiew &lt;Tsi-Chung.Liew@freescale.com&gt;
</content>
</entry>
<entry>
<title>ColdFire: Fix build error caused by pixis.c</title>
<updated>2007-09-15T19:03:09Z</updated>
<author>
<name>Liew Tsi Chung-r5aahp</name>
<email>Tsi-chung.Liew@freescale.com</email>
</author>
<published>2007-09-13T23:04:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=314d5b6ce52a4ed19dd295d1364e246c5e605017'/>
<id>urn:sha1:314d5b6ce52a4ed19dd295d1364e246c5e605017</id>
<content type='text'>
Moved the #include &lt;asm/cache.h&gt; inside the #ifdef CONFIG_FSL_PIXIS.

Signed-off-by: TsiChungLiew &lt;Tsi-Chung.Liew@freescale.com&gt;
</content>
</entry>
<entry>
<title>Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global</title>
<updated>2007-09-15T18:48:41Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-09-15T18:48:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1218abf1b5817a39a82399b4b928b00750575bda'/>
<id>urn:sha1:1218abf1b5817a39a82399b4b928b00750575bda</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>Make DECLARE_GLOBAL_DATA_PTR global for DaVinci</title>
<updated>2007-09-15T16:46:20Z</updated>
<author>
<name>Dirk Behme</name>
<email>dirk.behme@googlemail.com</email>
</author>
<published>2007-09-15T09:55:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=66b3f24d665be678a9dbb125b1e84185400f63b5'/>
<id>urn:sha1:66b3f24d665be678a9dbb125b1e84185400f63b5</id>
<content type='text'>
As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
function local.

Signed-off-by: Dirk Behme &lt;dirk.behme@gmail.com&gt;

[1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
</content>
</entry>
<entry>
<title>cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9</title>
<updated>2007-09-13T16:21:48Z</updated>
<author>
<name>Bartlomiej Sieka</name>
<email>tur@semihalf.com</email>
</author>
<published>2007-09-13T16:21:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c'/>
<id>urn:sha1:6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c</id>
<content type='text'>
Signed-off-by: Marian Balakowicz &lt;m8@semihalf.com&gt;
</content>
</entry>
<entry>
<title>Fix memory corruption problem on STX GP3 SSA Board.</title>
<updated>2007-09-11T22:48:57Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-09-11T22:48:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f34024d4a328e6edd906456da98d2c537155c4f7'/>
<id>urn:sha1:f34024d4a328e6edd906456da98d2c537155c4f7</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>[GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to</title>
<updated>2007-09-11T13:42:11Z</updated>
<author>
<name>Grzegorz Bernacki</name>
<email>gjb@semihalf.com</email>
</author>
<published>2007-09-11T13:42:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=38ad82da0c1180ecdeb212a8f4245e945bcc546e'/>
<id>urn:sha1:38ad82da0c1180ecdeb212a8f4245e945bcc546e</id>
<content type='text'>
scan on second pci bus.

Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
</content>
</entry>
<entry>
<title>Merge with /home/raj/git/u-boot#440SPe_PCIe_fixes</title>
<updated>2007-09-08T18:52:57Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-09-08T18:52:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=87eb200ea87571f00473dc5a73fadbb5aa6dd309'/>
<id>urn:sha1:87eb200ea87571f00473dc5a73fadbb5aa6dd309</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge with /home/raj/git/u-boot#ads5121_fixes</title>
<updated>2007-09-08T18:45:59Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-09-08T18:45:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=fd63d832cd929f8e8d8fcac9b3e55b1091588a43'/>
<id>urn:sha1:fd63d832cd929f8e8d8fcac9b3e55b1091588a43</id>
<content type='text'>
</content>
</entry>
</feed>
