OMAP3: Zoom1: Fix ARM relocation supportSigned-off-by: Dirk Behme <dirk.behme@googlemail.com>Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Switch from archive libraries to partial linkingBefore this commit, weak symbols were not overridden by non-weak symbolsfound in archive libraries when linking with recent versions ofbinutils. A
Switch from archive libraries to partial linkingBefore this commit, weak symbols were not overridden by non-weak symbolsfound in archive libraries when linking with recent versions ofbinutils. As stated in the System V ABI, "the link editor does notextract archive members to resolve undefined weak symbols".This commit changes all Makefiles to use partial linking (ld -r) insteadof creating library archives, which forces all symbols to participate inlinking, allowing non-weak symbols to override weak symbols as intended.This approach is also used by Linux, from which the gmake functioncmd_link_o_target (defined in config.mk and used in all Makefiles) isinspired.The name of each former library archive is preserved except forextensions which change from ".a" to ".o". This commit updatesreferences accordingly where needed, in particular in some linkerscripts.This commit reveals board configurations that exclude some features butinclude 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 <sebastien.carlier@gmail.com>
show more ...
Rename TEXT_BASE into CONFIG_SYS_TEXT_BASEThe change is currently needed to be able to remove the boardconfiguration scripting from the top level Makefile and replace it bya simple, table driven
Rename TEXT_BASE into CONFIG_SYS_TEXT_BASEThe change is currently needed to be able to remove the boardconfiguration scripting from the top level Makefile and replace it bya simple, table driven script.Moving this configuration setting into the "CONFIG_*" name space isalso desirable because it is needed if we ever should move forward toa Kconfig driven configuration system.Signed-off-by: Wolfgang Denk <wd@denx.de>
TWL4030: make LEDs selectable for twl4030_led_init()Not all boards have both LEDs hooked, so enabling both onboards with single LED will just waste power. Make itpossible to choose LEDs by adding
TWL4030: make LEDs selectable for twl4030_led_init()Not all boards have both LEDs hooked, so enabling both onboards with single LED will just waste power. Make itpossible to choose LEDs by adding argument totwl4030_led_init().Using this turn on only LEDB for pandora, leave both LEDson for all other boards, as it was before this patch.Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Net: Clean up LAN91C96 SupportA previous Commit converted the LAN91C96 Ethernet driver to using theCONFIG_NET_MULTI API, but did not include full board support. This patchfinishes the job.Sign
Net: Clean up LAN91C96 SupportA previous Commit converted the LAN91C96 Ethernet driver to using theCONFIG_NET_MULTI API, but did not include full board support. This patchfinishes the job.Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
OMAP3: Clean up whitespace in mux configsSwitch from space-based indentation to tab-based in mux configs, as pointedout by WD at:http://lists.denx.de/pipermail/u-boot/2009-September/061241.html
OMAP3: Clean up whitespace in mux configsSwitch from space-based indentation to tab-based in mux configs, as pointedout by WD at:http://lists.denx.de/pipermail/u-boot/2009-September/061241.htmlNothing but whitespace changes in this patch (diff -w gives no output).Signed-off-by: Olof Johansson <olof@lixom.net>
arm: move Logicpd's boards to board/logicpd/Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12