<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board/karo, branch v2011.06</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/board/karo?h=v2011.06</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board/karo?h=v2011.06'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2011-04-27T17:38:05Z</updated>
<entry>
<title>mx25: Make the UART port number explicit in its setup function</title>
<updated>2011-04-27T17:38:05Z</updated>
<author>
<name>Fabio Estevam</name>
<email>fabio.estevam@freescale.com</email>
</author>
<published>2011-03-02T09:14:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9aa720b1454ce0f4dab78ee5b81a5405c287e180'/>
<id>urn:sha1:9aa720b1454ce0f4dab78ee5b81a5405c287e180</id>
<content type='text'>
Signed-off-by: Fabio Estevam &lt;fabio.estevam@freescale.com&gt;
</content>
</entry>
<entry>
<title>Switch from archive libraries to partial linking</title>
<updated>2010-11-17T20:02:18Z</updated>
<author>
<name>Sebastien Carlier</name>
<email>sebastien.carlier@gmail.com</email>
</author>
<published>2010-11-05T14:48:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6d8962e814c15807dd6ac5757904be2a02d187b8'/>
<id>urn:sha1:6d8962e814c15807dd6ac5757904be2a02d187b8</id>
<content type='text'>
Before this commit, weak symbols were not overridden by non-weak symbols
found in archive libraries when linking with recent versions of
binutils.  As stated in the System V ABI, "the link editor does not
extract archive members to resolve undefined weak symbols".

This commit changes all Makefiles to use partial linking (ld -r) instead
of creating library archives, which forces all symbols to participate in
linking, allowing non-weak symbols to override weak symbols as intended.
This approach is also used by Linux, from which the gmake function
cmd_link_o_target (defined in config.mk and used in all Makefiles) is
inspired.

The name of each former library archive is preserved except for
extensions which change from ".a" to ".o".  This commit updates
references accordingly where needed, in particular in some linker
scripts.

This commit reveals board configurations that exclude some features but
include source files that depend these disabled features in the build,
resulting in undefined symbols.  Known such cases include:
- disabling CMD_NET but not CMD_NFS;
- enabling CONFIG_OF_LIBFDT but not CONFIG_QE.

Signed-off-by: Sebastien Carlier &lt;sebastien.carlier@gmail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'elf_reloc'</title>
<updated>2010-10-19T19:07:52Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2010-10-19T19:07:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6d8d4ef994a7c46e34b5fe53b1af7aa4f78192bf'/>
<id>urn:sha1:6d8d4ef994a7c46e34b5fe53b1af7aa4f78192bf</id>
<content type='text'>
Conflicts:
	arch/arm/include/asm/config.h
	board/LaCie/edminiv2/config.mk
	board/karo/tx25/config.mk
	board/logicpd/imx27lite/config.mk
	doc/README.arm-relocation

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>Rename TEXT_BASE into CONFIG_SYS_TEXT_BASE</title>
<updated>2010-10-18T20:07:10Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2010-10-07T19:51:12Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=14d0a02a168b36e87665b8d7f42fa3e88263d26d'/>
<id>urn:sha1:14d0a02a168b36e87665b8d7f42fa3e88263d26d</id>
<content type='text'>
The change is currently needed to be able to remove the board
configuration scripting from the top level Makefile and replace it by
a simple, table driven script.

Moving this configuration setting into the "CONFIG_*" name space is
also desirable because it is needed if we ever should move forward to
a Kconfig driven configuration system.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>arm926ejs, tx25: add support for ELF relocations</title>
<updated>2010-10-13T08:12:01Z</updated>
<author>
<name>Heiko Schocher</name>
<email>hs@denx.de</email>
</author>
<published>2010-10-11T12:08:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9710504d200599a6e7e7ac0046adca43cfccaf0f'/>
<id>urn:sha1:9710504d200599a6e7e7ac0046adca43cfccaf0f</id>
<content type='text'>
Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
</content>
</entry>
<entry>
<title>ARM: implement relocation for ARM926</title>
<updated>2010-09-19T17:29:54Z</updated>
<author>
<name>Heiko Schocher</name>
<email>hs@denx.de</email>
</author>
<published>2010-09-17T11:10:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ab86f72c354f9b2572340f72b74ca0a258c451bd'/>
<id>urn:sha1:ab86f72c354f9b2572340f72b74ca0a258c451bd</id>
<content type='text'>
Change the implementation for arm926 to relocate the code to
an arbitrary address in RAM.

Adapt the TX25 (i.MX25), magnesium board to test the changes.

On the tx25 board TEXT_BASE is set to the final relocation
address to prevent one more copying of u-boot code
when relocating. More info see:
doc/README.arm-relocation

da850 board:
Tested-by: Ben Gardiner &lt;bengardiner@nanometrics.ca&gt;

Portions of this work were supported by funding from
the CE Linux Forum.

Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Ben Gardiner &lt;bengardiner@nanometrics.ca&gt;
</content>
</entry>
<entry>
<title>tx25: fix crash while booting Linux</title>
<updated>2010-05-05T07:48:41Z</updated>
<author>
<name>Anatolij Gustschin</name>
<email>agust@denx.de</email>
</author>
<published>2010-04-21T11:52:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=87db58dca47f93f9fb3b4ed0196dd7a3f5df1cb9'/>
<id>urn:sha1:87db58dca47f93f9fb3b4ed0196dd7a3f5df1cb9</id>
<content type='text'>
Currently booting Linux on TX25 board doesn't work
since there is no correct mach-id and boot parameters
setup for tx25 board. Fix it now.

Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
Cc: John Rigby &lt;jcrigby@gmail.com&gt;
Cc: Stefano Babic &lt;sbabic@denx.de&gt;
</content>
</entry>
<entry>
<title>Prepare v2010.03-rc1</title>
<updated>2010-03-12T22:06:04Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2010-03-12T22:06:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=93910edb595a88d394da3eb2cf5148096155dfe9'/>
<id>urn:sha1:93910edb595a88d394da3eb2cf5148096155dfe9</id>
<content type='text'>
Coding style cleanup, update CHANGELOG.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>Add support for KARO TX25 board</title>
<updated>2010-03-07T18:36:36Z</updated>
<author>
<name>John Rigby</name>
<email>jcrigby@gmail.com</email>
</author>
<published>2010-01-26T06:12:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6895d4510a7758595b85b48a7f449bd61dfc812f'/>
<id>urn:sha1:6895d4510a7758595b85b48a7f449bd61dfc812f</id>
<content type='text'>
This is an i.MX25 base board with only NAND
so it uses nand_spl to boot.

Signed-off-by: John Rigby &lt;jcrigby@gmail.com&gt;

Tune configuration, add support for (redundant) environment in NAND.
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;

Acked-by: Wolfgang Denk &lt;wd@denx.de&gt;
CC: Fred Fan &lt;fanyefeng@gmail.com&gt;
CC: Tom &lt;Tom.Rix@windriver.com&gt;
</content>
</entry>
</feed>
