1. 28 4月, 2011 4 次提交
  2. 28 3月, 2011 5 次提交
  3. 21 2月, 2011 1 次提交
  4. 02 2月, 2011 5 次提交
  5. 21 12月, 2010 1 次提交
  6. 14 12月, 2010 1 次提交
  7. 12 12月, 2010 1 次提交
  8. 11 12月, 2010 1 次提交
  9. 09 12月, 2010 6 次提交
  10. 30 11月, 2010 2 次提交
  11. 22 11月, 2010 1 次提交
  12. 20 11月, 2010 1 次提交
  13. 18 11月, 2010 2 次提交
    • S
      Switch from archive libraries to partial linking · 6d8962e8
      Sebastien Carlier 提交于
      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: NSebastien Carlier <sebastien.carlier@gmail.com>
      6d8962e8
    • A
      ARM: fix linker file for newer ld support · aaeb0a89
      Albert Aribaud 提交于
      older ld emitted all ELF relocations in input sections named
      .rel.dyn, whereas newer ld uses names of the form .rel*. The
      linker script only collected .rel.dyn input sections. Rewrite
      to collect all .rel* input sections.
      Signed-off-by: NAlbert Aribaud <albert.aribaud@free.fr>
      aaeb0a89
  14. 05 11月, 2010 1 次提交
  15. 30 10月, 2010 2 次提交
  16. 28 10月, 2010 2 次提交
    • S
      MX51: remove warning in clock.c · 9a004418
      Stefano Babic 提交于
      The patch removes the warning:
      
      clock.c:291: warning: initialization from incompatible pointer type
      
      after  constification of args[]
      Signed-off-by: NStefano Babic <sbabic@denx.de>
      9a004418
    • J
      MX5:use common u-boot.lds of cpu layer · 95707aaa
      Jason Liu 提交于
      Remove u-boot.lds from mx5 and use the common u-boot.lds
      of cpu layer. This patch also fix the building errors:
      
      arch/arm/cpu/armv7/start.o: In function `_rel_dyn_start_ofs':
      arch/arm/cpu/armv7/start.S:283: undefined reference to `__rel_dyn_start'
      arch/arm/cpu/armv7/start.o: In function `_rel_dyn_end_ofs':
      arch/arm/cpu/armv7/start.S:283: undefined reference to `__rel_dyn_end'
      arch/arm/cpu/armv7/start.o: In function `_dynsym_start_ofs':
      arch/arm/cpu/armv7/start.S:283: undefined reference to `__dynsym_start'
      Signed-off-by: NJason Liu <r64343@freescale.com>
      95707aaa
  17. 27 10月, 2010 3 次提交
  18. 19 10月, 2010 1 次提交