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