03 Dec, 2019

1 commit


07 May, 2018

1 commit

  • 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: Tom Rini

    Tom Rini
     

11 Sep, 2017

1 commit


29 Mar, 2017

1 commit


15 Oct, 2016

1 commit


30 Jan, 2015

1 commit


12 Dec, 2014

1 commit

  • For LS102xA, the size of spl/u-boot-spl.bin is variable.
    This patch adds the support to deal with the variable
    u-boot size in pblimage tool. It will be padded to 64
    byte boundary.

    Use pblimage_check_params() to add the specific operations
    for ARM, such as PBI CRC and END command and the calculation
    of pbl_cmd_initaddr.

    Signed-off-by: Alison Wang
    Reviewed-by: York Sun

    Alison Wang
     

06 Jun, 2014

1 commit


13 Dec, 2013

1 commit

  • In order to avoid duplicating code and keep only one point of modification,
    the functions, structs and defines useful for "dumpimage" were moved from
    "mkimage" to a common module called "imagetool".

    This modification also weakens the coupling between image types (FIT, IMX, MXS,
    and so on) and image tools (mkimage and dumpimage). Any tool may initialize the
    "imagetool" through register_image_tool() function, while the image types
    register themselves within an image tool using the register_image_type()
    function:

    +---------------+
    +------| fit_image |
    +--------------+ +-----------+ | +---------------+
    | mkimage |--------> | | | |
    Signed-off-by: Simon Glass

    Guilherme Maciel Ferreira
     

17 Aug, 2013

1 commit

  • Commit 669dfc2e adds libfdt_env.h to HOSTCPPFLAGS. It causes stdio.h
    to be included before _GNU_SOURCE is defined in C files. On some old hosts
    some prototypes are protected by #ifdef __USE_GNU, which is set when
    _GNU_SOURCE is defined.

    Signed-off-by: York Sun
    Acked-by: Simon Glass

    York Sun
     

24 Jul, 2013

1 commit


21 Jun, 2013

1 commit


23 Aug, 2012

1 commit

  • Provides a tool to build boot Image for PBL(Pre boot loader) which is
    used on Freescale CoreNet SoCs, PBL can be used to load some instructions
    and/or data for pre-initialization. The default output image is u-boot.pbl,
    for more details please refer to doc/README.pblimage.

    Signed-off-by: Shaohui Xie
    Signed-off-by: Andy Fleming

    Shaohui Xie