Skip to content
Snippets Groups Projects
  1. Jul 28, 2011
  2. Dec 09, 2010
  3. Nov 28, 2010
  4. Nov 17, 2010
    • Sebastien Carlier's avatar
      Switch from archive libraries to partial linking · 6d8962e8
      Sebastien Carlier authored
      
      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: default avatarSebastien Carlier <sebastien.carlier@gmail.com>
      6d8962e8
  5. Aug 07, 2010
  6. Dec 04, 2009
  7. Jul 28, 2009
  8. Aug 31, 2008
  9. Mar 02, 2008
  10. Jan 09, 2008
  11. Jul 10, 2007
  12. Jul 09, 2007
  13. Jul 03, 2007
  14. Oct 08, 2006
  15. Sep 01, 2006
    • Marian Balakowicz's avatar
      Add support for a saving build objects in a separate directory. · f9328639
      Marian Balakowicz authored
      Modifications are based on the linux kernel approach and
      support two use cases:
      
        1) Add O= to the make command line
        'make O=/tmp/build all'
      
        2) Set environement variable BUILD_DIR to point to the desired location
        'export BUILD_DIR=/tmp/build'
        'make'
      
      The second approach can also be used with a MAKEALL script
      'export BUILD_DIR=/tmp/build'
      './MAKEALL'
      
      Command line 'O=' setting overrides BUILD_DIR environent variable.
      
      When none of the above methods is used the local build is performed and
      the object files are placed in the source directory.
      f9328639
  16. Jan 18, 2006
  17. Mar 04, 2005
    • Wolfgang Denk's avatar
      * Fix get_partition_info() parameter error in all other calls · b05dcb58
      Wolfgang Denk authored
        (common/cmd_ide.c, common/cmd_reiser.c, common/cmd_scsi.c).
      
      * Enable USB and IDE support for INKA4x0 board
      
      * Patch by Andrew Dyer, 28 February 2005:
        fix ext2load passing an incorrect pointer to get_partition_info()
        resulting in load failure for devices other than 0
      b05dcb58
  18. Feb 04, 2005
    • Wolfgang Denk's avatar
      * Patch by Cajus Hahn, 04 Feb 2005: · 20a80418
      Wolfgang Denk authored
        - don't insist on leading '/' for filename in ext2load
        - set default partition to useful value (1) in ext2load
      
      * Patch by Andrew Dyer, 08 Jan 2005:
        fix wrong return codes in ext2 code
      20a80418
  19. Dec 19, 2004
  20. Dec 16, 2004
Loading