1. 07 5月, 2018 1 次提交
    • T
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini 提交于
      When U-Boot started using SPDX tags we were among the early adopters and
      there weren't a lot of other examples to borrow from.  So we picked the
      area of the file that usually had a full license text and replaced it
      with an appropriate SPDX-License-Identifier: entry.  Since then, the
      Linux Kernel has adopted SPDX tags and they place it as the very first
      line in a file (except where shebangs are used, then it's second line)
      and with slightly different comment styles than us.
      
      In part due to community overlap, in part due to better tag visibility
      and in part for other minor reasons, switch over to that style.
      
      This commit changes all instances where we have a single declared
      license in the tag as both the before and after are identical in tag
      contents.  There's also a few places where I found we did not have a tag
      and have introduced one.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      83d290c5
  2. 01 11月, 2013 1 次提交
  3. 24 7月, 2013 1 次提交
  4. 16 10月, 2011 1 次提交
  5. 18 11月, 2010 1 次提交
    • 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
  6. 22 10月, 2010 1 次提交
    • P
      xes: Make X-ES board names more generic · c00ac259
      Peter Tyser 提交于
      Some U-Boot images for X-ES boards support multiple products in the same
      family.  For example, the XPedite5370, XPedite5371, and XPedite5372 are
      similar enough that one U-Boot image can work on all 3 cards.  To make it
      clear that a U-Boot image can work on boards of the same family, rename
      the boards with the least significant digit of 'x'.
      
      While we're at it, change the board config file and make targets to be
      lowercase.
      
      Also change the default uImage and fdt filenames to "board.uImage" and
      "board.dtb" to be more generic.
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      c00ac259
  7. 02 7月, 2009 1 次提交
  8. 28 8月, 2008 1 次提交
  9. 03 7月, 2008 1 次提交
  10. 17 1月, 2008 2 次提交
  11. 12 12月, 2007 1 次提交
  12. 09 10月, 2006 1 次提交
  13. 02 9月, 2006 1 次提交
    • M
      Add support for a saving build objects in a separate directory. · f9328639
      Marian Balakowicz 提交于
      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
  14. 11 10月, 2004 1 次提交
    • W
      * Patch by Jon Loeliger, 24 Aug 2004: · cf33678e
      wdenk 提交于
        - Fix PCI window on MPC85xx; remove unneeded PCI initialization
          from board_early_init_f()
        - Provide SW workaround for PCI initialization on 85xx CDS
        - Convert MPC85xxADS to use common CFI flash driver
      
      * Cleanup: avoid compiler warnings
      
      * Add CMC PU2 board to MAKEALL script
      cf33678e
  15. 16 10月, 2003 1 次提交
    • W
      * Patches by Xianghua Xiao, 15 Oct 2003: · 42d1f039
      wdenk 提交于
        - Added Motorola CPU 8540/8560 support (cpu/85xx)
        - Added Motorola MPC8540ADS board support (board/mpc8540ads)
        - Added Motorola MPC8560ADS board support (board/mpc8560ads)
      
      * Minor code cleanup
      42d1f039
  16. 28 6月, 2003 1 次提交
    • W
      * Code cleanup: · 8bde7f77
      wdenk 提交于
        - remove trailing white space, trailing empty lines, C++ comments, etc.
        - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
      
      * Patches by Kenneth Johansson, 25 Jun 2003:
        - major rework of command structure
          (work done mostly by Michal Cendrowski and Joakim Kristiansen)
      8bde7f77
  17. 09 3月, 2002 1 次提交
  18. 02 3月, 2001 1 次提交
  19. 12 1月, 2001 1 次提交
  20. 14 12月, 2000 1 次提交
  21. 10 7月, 2000 1 次提交